We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 514be80 commit 0b26d97Copy full SHA for 0b26d97
hypothesis-python/tox.ini
@@ -205,7 +205,11 @@ setenv=
205
PYTHONWARNDEFAULTENCODING=
206
commands=
207
pip install pytest==6.2.5 pytest-xdist
208
- python -bb -X dev -m pytest tests/pytest tests/cover/test_testdecorators.py
+ # explicitly pass config file to suppress automatic discovery, which would error with a parsing
209
+ # bug for toml. only on pytest 6, as the only major version to support pyproject.toml and also
210
+ # use an affected parsing library.
211
+ # https://github.com/HypothesisWorks/hypothesis/pull/4326#issuecomment-2764314834
212
+ python -bb -X dev -m pytest -c ../pytest.ini tests/pytest tests/cover/test_testdecorators.py
213
214
[testenv:pytest7]
215
deps =
0 commit comments