blob: c33af70ac84edc65a7018a6e8c35b9f3d05bde72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
[tox]
envlist = py{27,35,36,37}-normal
[testenv]
setenv = COVERAGE_FILE=.coverage-{env:TOX_ENV_NAME}
commands =
pytest --cov=. --cov-report html --cov-report term {posargs}
deps =
-rtests/dev_requirements.txt
|