|
1 | 1 | [tox] |
2 | 2 | distshare = {homedir}/.tox/distshare |
3 | | -envlist = py27-pytest{43,44,45,46}, |
4 | | - py38-pytest{43,44,45,46,50,51,52,53,54,60,latest}, |
| 3 | +envlist = py27-pytest46, |
| 4 | + py38-pytest{46,50,51,52,53,54,60,61,62,latest,master}, |
5 | 5 | py38-pytestlatest-linters, |
6 | | - py{35,36,37}-pytestlatest |
| 6 | + py{36,37,39}-pytestlatest |
7 | 7 |
|
8 | 8 | [testenv] |
9 | 9 | commands = pytest --junitxml={envlogdir}/junit-{envname}.xml {posargs:tests} |
10 | 10 | deps = |
11 | 11 | pytestlatest: pytest |
| 12 | + pytestmaster: git+https://github.com/pytest-dev/pytest.git@master |
| 13 | + pytest62: pytest~=6.2.0 |
| 14 | + pytest61: pytest~=6.1.0 |
12 | 15 | pytest60: pytest~=6.0.0 |
13 | 16 | pytest54: pytest~=5.4.0 |
14 | 17 | pytest53: pytest~=5.3.0 |
15 | 18 | pytest52: pytest~=5.2.0 |
16 | 19 | pytest51: pytest~=5.1.0 |
17 | 20 | pytest50: pytest~=5.0.0 |
18 | 21 | pytest46: pytest~=4.6.0 |
19 | | - pytest45: pytest~=4.5.0 |
20 | | - pytest44: pytest~=4.4.0 |
21 | | - pytest43: pytest~=4.3.0 |
22 | 22 |
|
23 | 23 | -r{toxinidir}/requirements-testing.txt |
24 | 24 |
|
25 | 25 | [testenv:py38-pytestlatest-linters] |
26 | 26 | deps = black |
27 | 27 | commands = black --check --verbose setup.py pytest_factoryboy tests |
28 | 28 |
|
| 29 | +[testenv:py38-pytestmaster] |
| 30 | +# allow failures of tests run for `pytest` installed from `master` branch |
| 31 | +ignore_outcome = true |
| 32 | + |
29 | 33 | [pytest] |
30 | 34 | addopts = -vv -l |
31 | | -pep8maxlinelength = 120 |
|
0 commit comments