2019-08-04 00:00:22 +02:00
|
|
|
[tox]
|
|
|
|
# These are the default environments that will be run
|
|
|
|
# when ``tox`` is run without arguments.
|
|
|
|
envlist =
|
2020-02-02 20:08:56 +01:00
|
|
|
pytest
|
|
|
|
flake8
|
2019-08-12 10:58:28 +02:00
|
|
|
skip_missing_interpreters = True
|
2019-08-04 00:00:22 +02:00
|
|
|
|
2019-08-12 10:58:28 +02:00
|
|
|
[testenv]
|
2020-02-02 20:08:56 +01:00
|
|
|
deps = -r{toxinidir}/dev-requirements.txt
|
|
|
|
whitelist_externals = bash
|
2019-08-04 00:00:22 +02:00
|
|
|
|
2020-02-02 20:08:56 +01:00
|
|
|
[testenv:pytest]
|
|
|
|
commands = bash tests.sh
|
|
|
|
|
|
|
|
[testenv:flake8]
|
|
|
|
commands = flake8
|