Added tox.ini

merge-requests/55/head
Fabian P. Schmidt 2019-11-06 13:25:35 +01:00
parent e5b73f3aee
commit 9c709bcbc4
1 changed files with 24 additions and 0 deletions

24
tox.ini 100644
View File

@ -0,0 +1,24 @@
# 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]
skipsdist = True
envlist =
flake8
py37
[testenv:flake8]
deps =
flake8
skip_install = True
commands = flake8 \
auto_scheduler
[testenv]
deps =
pytest
-rrequirements.txt
commands =
pytest