1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
[tox]
[testenv:TEST]
deps =
pytest
dbus-python
python-networkmanager
flask
pygobject
apt-wrapper
cachetools
commands_pre =
apt status libcairo2-dev
apt status gobject-introspection
apt status libgirepository1.0-dev
apt status python3-dev
apt status libdbus-glib-1-dev
apt status libdbus-1-dev
commands = pytest
[testenv:PEP8]
deps = flake8
commands = flake8 setup.py comitup cli web test
[testenv:MYPY]
deps =
mypy
types-tabulate
types-Flask
types-cachetools
commands = mypy comitup cli web test
|