pantalaimon/tox.ini

30 lines
609 B
INI
Raw Normal View History

2019-04-10 12:43:54 +02:00
# content of: tox.ini , put in same dir as setup.py
[tox]
2020-12-02 12:43:20 +01:00
envlist = py38,py39,coverage
2019-04-10 12:43:54 +02:00
[testenv]
basepython =
2020-12-02 12:43:20 +01:00
py38: python3.8
py39: python3.9
py3: python3.9
2019-04-10 12:43:54 +02:00
deps = -rtest-requirements.txt
install_command = pip install {opts} {packages}
passenv = TOXENV CI TRAVIS TRAVIS_*
commands = pytest
usedevelop = True
[testenv:coverage]
2020-12-02 12:43:20 +01:00
basepython = python3.9
2019-04-10 12:43:54 +02:00
commands =
2019-04-10 14:52:11 +02:00
pytest --cov=pantalaimon --cov-report term-missing
2019-04-10 12:43:54 +02:00
coverage xml
coverage report --show-missing
codecov -e TOXENV
deps =
-rtest-requirements.txt
2019-04-10 12:43:54 +02:00
coverage
codecov>=1.4.0
setenv =
COVERAGE_FILE=.coverage