Andreas Wacknitz
2024-03-24 3df02058fb3d48a999bbc8d5d56c2910fbc249a4
commit | author | age
0e2a0d 1 Workaround for https://github.com/PyO3/setuptools-rust/issues/358
MT 2
6af0db 3 --- hypothesis-hypothesis-python-6.99.12/hypothesis-python/tests/nocover/test_baseexception.py.orig
MT 4 +++ hypothesis-hypothesis-python-6.99.12/hypothesis-python/tests/nocover/test_baseexception.py
0e2a0d 5 @@ -125,6 +125,6 @@
MT 6          exception=exc_name, strategy="things()" if use_composite else "st.none()"
7      )
8      test_file = str(testdir.makepyfile(code))
9cf9c3 9 -    pytest_stdout = str(testdir.runpytest_inprocess(test_file, "--tb=native", "-p", "no:reporter").stdout)
MT 10 +    pytest_stdout = str(testdir.runpytest_inprocess(test_file, "--tb=native", "-p", "no:checkdocs", "-p", "no:reporter").stdout)
0e2a0d 11      assert "x=101" in pytest_stdout
MT 12      assert exc_name in pytest_stdout
6af0db 13 --- hypothesis-hypothesis-python-6.99.12/hypothesis-python/tests/nocover/test_scrutineer.py.orig
MT 14 +++ hypothesis-hypothesis-python-6.99.12/hypothesis-python/tests/nocover/test_scrutineer.py
0e2a0d 15 @@ -54,7 +54,7 @@
MT 16      test_file = str(testdir.makepyfile(file_contents))
17      pytest_stdout = str(
18          testdir.runpytest_inprocess(
9cf9c3 19 -            test_file, "--tb=native", "-p", "no:black", "-p", "no:cov", "-p", "no:mypy", "-p", "no:reporter"
MT 20 +            test_file, "--tb=native", "-p", "no:black", "-p", "no:checkdocs", "-p", "no:cov", "-p", "no:mypy", "-p", "no:reporter"
0e2a0d 21          ).stdout
MT 22      )
23