summaryrefslogtreecommitdiffstats
path: root/testing/condprofile/tox.ini
blob: ddaca5911a2f9ab29b108a875148b510e4ad4529 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[tox]
downloadcache = {toxworkdir}/cache/
envlist = py36,flake8

[testenv]
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
deps = -rrequirements/tox.txt
commands =
       pytest --random-order-bucket=global -sv --cov-report= --cov-config .coveragerc --cov condprof condprof/tests
       - coverage report -m
       - coveralls

[testenv:flake8]
commands = flake8 condprof
deps =
    flake8