Files
wookiee-dl/tox.ini

34 lines
618 B
INI

# tox (https://tox.readthedocs.io/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist = py310,black,flake
[flake8]
max-line-length = 160
[testenv]
allowlist_externals = rm
deps =
commands =
;Generate pywikibot family file
python -m unittest discover
[testenv:black]
deps =
black
commands =
python -m black wookiee_dl
python -m black tests
[testenv:flake]
deps =
flake8
commands =
python -m flake8 wookiee_dl