Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
tox.ini 422 B
[tox]
envlist = py27, py35, py36, py37, py38, flake8

[travis]
python =
    2.7: py27
    3.5: py35
    3.6: py36
    3.7: py37
    3.8: py38

[testenv:flake8]
basepython = python
deps = flake8
commands = flake8 --ignore=E722,E712 data2passcal
           flake8 --ignore=E722,E712 tests

[testenv:py27]
changedir = tests
deps = mock
commands = python -m unittest test_data2passcal

[testenv]
commands = python -m unittest