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