Skip to content

Commit 516533c

Browse files
authored
Add pytests 3.10 and 4 to tox (#267)
* Update changelog * Add pytests to tox
1 parent 5678a5c commit 516533c

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ matrix:
1616
- env: TOXENV=py27-pytest37
1717
- env: TOXENV=py27-pytest38
1818
- env: TOXENV=py27-pytest39
19+
- env: TOXENV=py27-pytest310
20+
- env: TOXENV=py27-pytest40
1921
- env: TOXENV=py27-pytestlatest
2022
- env: TOXENV=py27-pytestlatest-xdist
2123
- env: TOXENV=py34-pytestlatest

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Changelog
55
------
66

77
- Minimal supported version of `pytest` is now 2.9.0 as lower versions do not support `bool` type ini options (sliwinski-milosz) #260
8+
- Fix RemovedInPytest4Warning warnings (sliwinski-milosz) #261.
89

910
3.0.0
1011
------

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
[tox]
22
distshare={homedir}/.tox/distshare
3-
envlist=py27-pytestlatest-linters,py27-pytest{29,30,31,32,33,34,35,36,37,38,39,latest},py{34,35,36,37}-pytestlatest,py27-pytestlatest-xdist
3+
envlist=py27-pytestlatest-linters,py27-pytest{29,30,31,32,33,34,35,36,37,38,39,310,40,latest},py{34,35,36,37}-pytestlatest,py27-pytestlatest-xdist
44
skip_missing_interpreters = true
55

66
[testenv]
77
deps =
88
pytestlatest: pytest
9+
pytest40: pytest~=4.0.0
10+
pytest310: pytest~=3.10.0
911
pytest39: pytest~=3.9.0
1012
pytest38: pytest~=3.8.0
1113
pytest37: pytest~=3.7.0

0 commit comments

Comments
 (0)