File tree Expand file tree Collapse file tree 3 files changed +13
-15
lines changed
tooling/src/hypothesistooling Expand file tree Collapse file tree 3 files changed +13
-15
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-pytest4
46
- - check-pytest5
47
- - check-pytest6
48
- - check-pytest7
45
+ - check-pytest46
46
+ - check-pytest54
47
+ - check-pytest62
49
48
- check-django40
50
49
- check-django32
51
50
- check-django22
Original file line number Diff line number Diff line change @@ -103,25 +103,25 @@ deps =
103
103
commands =
104
104
nosetests tests/cover/test_testdecorators.py
105
105
106
- [testenv:pytest4 ]
106
+ [testenv:pytest46 ]
107
107
deps =
108
108
-r../requirements/test.txt
109
109
commands =
110
- pip install pytest ==4.* pytest-xdist ==1.34
110
+ pip install pytest ==4.6.11 pytest-xdist ==1.34
111
111
python -bb -X dev -m pytest tests/pytest tests/cover/test_testdecorators.py
112
112
113
- [testenv:pytest5 ]
113
+ [testenv:pytest54 ]
114
114
deps =
115
115
-r../requirements/test.txt
116
116
commands =
117
- pip install pytest ==5.* pytest-xdist
117
+ pip install pytest ==5.4.3 pytest-xdist
118
118
python -bb -X dev -m pytest tests/pytest tests/cover/test_testdecorators.py
119
119
120
- [testenv:pytest6 ]
120
+ [testenv:pytest62 ]
121
121
deps =
122
122
-r../requirements/test.txt
123
123
commands =
124
- pip install pytest ==6.* pytest-xdist
124
+ pip install pytest ==6.2.5 pytest-xdist
125
125
python -bb -X dev -m pytest tests/pytest tests/cover/test_testdecorators.py
126
126
127
127
[testenv:pytest7]
Original file line number Diff line number Diff line change @@ -451,7 +451,7 @@ def check_pypy38():
451
451
452
452
@task ()
453
453
def tox (* args ):
454
- if len (args ) == 0 :
454
+ if len (args ) < 2 :
455
455
print ("Usage: ./build.sh tox TOX_ENV PY_VERSION [tox args]" )
456
456
sys .exit (1 )
457
457
run_tox (args [0 ], args [1 ], * args [2 :])
@@ -462,10 +462,9 @@ def standard_tox_task(name):
462
462
463
463
464
464
standard_tox_task ("nose" )
465
- standard_tox_task ("pytest4" )
466
- standard_tox_task ("pytest5" )
467
- standard_tox_task ("pytest6" )
468
- standard_tox_task ("pytest7" )
465
+ standard_tox_task ("pytest46" )
466
+ standard_tox_task ("pytest54" )
467
+ standard_tox_task ("pytest62" )
469
468
470
469
for n in [22 , 32 , 40 ]:
471
470
standard_tox_task (f"django{ n } " )
You can’t perform that action at this time.
0 commit comments