[tox]
envlist = py27, py36, flake8

[travis]
python =
    2.7: py27
    3.6: py36

[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:py36]
commands = python -m unittest