Commit 07bcc06 1 parent af7e43d commit 07bcc06 Copy full SHA for 07bcc06
File tree 3 files changed +30
-4
lines changed
tooling/src/hypothesistooling
3 files changed +30
-4
lines changed Original file line number Diff line number Diff line change 42
42
- audit-conjecture-rust
43
43
- lint-conjecture-rust
44
44
- check-nose
45
- - check-pytest46
45
+ - check-pytest4
46
+ - check-pytest5
47
+ - check-pytest6
48
+ - check-pytest7
46
49
- check-django40
47
50
- check-django32
48
51
- check-django22
Original file line number Diff line number Diff line change @@ -103,13 +103,33 @@ deps =
103
103
commands =
104
104
nosetests tests/cover/test_testdecorators.py
105
105
106
- [testenv:pytest46 ]
106
+ [testenv:pytest4 ]
107
107
deps =
108
108
-r../requirements/test.txt
109
109
commands =
110
- pip install pytest ==4.6 pytest-xdist ==1.34
110
+ pip install pytest ==4.* pytest-xdist ==1.34
111
111
python -bb -X dev -m pytest tests/pytest tests/cover/test_testdecorators.py
112
112
113
+ [testenv:pytest5]
114
+ deps =
115
+ -r../requirements/test.txt
116
+ commands =
117
+ pip install pytest ==5.* pytest-xdist
118
+ python -bb -X dev -m pytest tests/pytest tests/cover/test_testdecorators.py
119
+
120
+ [testenv:pytest6]
121
+ deps =
122
+ -r../requirements/test.txt
123
+ commands =
124
+ pip install pytest ==6.* pytest-xdist
125
+ python -bb -X dev -m pytest tests/pytest tests/cover/test_testdecorators.py
126
+
127
+ [testenv:pytest7]
128
+ deps =
129
+ -r../requirements/test.txt
130
+ commands =
131
+ pip install pytest ==7.* pytest-xdist
132
+ python -bb -X dev -m pytest tests/pytest tests/cover/test_testdecorators.py
113
133
114
134
[testenv:coverage]
115
135
deps =
Original file line number Diff line number Diff line change @@ -462,7 +462,10 @@ def standard_tox_task(name):
462
462
463
463
464
464
standard_tox_task ("nose" )
465
- standard_tox_task ("pytest46" )
465
+ standard_tox_task ("pytest4" )
466
+ standard_tox_task ("pytest5" )
467
+ standard_tox_task ("pytest6" )
468
+ standard_tox_task ("pytest7" )
466
469
467
470
for n in [22 , 32 , 40 ]:
468
471
standard_tox_task (f"django{ n } " )
You can’t perform that action at this time.
0 commit comments