Marcel Telka
2024-04-09 11cd3607f21207430dcdf0da500f91647e15c5e8
commit | author | age
b25706 1 https://github.com/christiansandberg/pytest-reporter/issues/8
MT 2
11cd36 3 --- hypothesis-hypothesis-python-6.100.1/hypothesis-python/tests/nocover/test_baseexception.py.orig
MT 4 +++ hypothesis-hypothesis-python-6.100.1/hypothesis-python/tests/nocover/test_baseexception.py
b25706 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").stdout)
MT 10 +    pytest_stdout = str(testdir.runpytest_inprocess(test_file, "--tb=native", "-p", "no:reporter").stdout)
b25706 11      assert "x=101" in pytest_stdout
MT 12      assert exc_name in pytest_stdout
11cd36 13 --- hypothesis-hypothesis-python-6.100.1/hypothesis-python/tests/nocover/test_scrutineer.py.orig
MT 14 +++ hypothesis-hypothesis-python-6.100.1/hypothesis-python/tests/nocover/test_scrutineer.py
b25706 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"
MT 20 +            test_file, "--tb=native", "-p", "no:black", "-p", "no:cov", "-p", "no:mypy", "-p", "no:reporter"
b25706 21          ).stdout
MT 22      )
23