-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tox.ini
55 lines (50 loc) · 1.36 KB
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Tox (https://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
# deprecation warning: py{27,py2,34,35,36}
envlist=py{27,34,35,36,37,38,39,310,311,py2,py3}, setup.py
isolated_build=True
[gh-actions]
python=
2.7: py27
3.5: py35
3.6: py36
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
pypy-2.7: pypy2
pypy-3.7: pypy3
[core]
deps=
pytest
py3{4,5,6}: pytest<7
pytest-cov
pytest-timeout
argparse
coverage
coveralls
codecov
commands=
- coveralls
codecov -X pycov -e TOXENV
[testenv]
passenv=TOXENV,CI,GITHUB_*,CODECOV_*,COVERALLS_*,HOME
deps=
{[core]deps}
commands=
py{27,py2}: pytest --cov=argopt --cov-report=xml --cov-report=term -o addopts= -v --tb=short -rxs -W=error --durations=10
py3{4,5,6}: pytest --cov=argopt --cov-report=xml --cov-report=term -o addopts= -v --tb=short -rxs -W=error --durations=0 --durations-min=0.1
py3{7,8,9,10,11}: pytest --cov=argopt --cov-report=xml --cov-report=term
{[core]commands}
[testenv:setup.py]
deps=
docutils
pygments
py-make>=0.1.0
commands=
{envpython} setup.py check --restructuredtext --metadata --strict
{envpython} setup.py make none