Andreas Wacknitz
2024-04-09 7bea32fd382fe993229cd2db29c3a13cb8138b09
commit | author | age
1cf713 1 https://github.com/pytest-dev/pytest/issues/12186
MT 2
11cd36 3 --- hypothesis-hypothesis-python-6.100.1/hypothesis-python/tests/nocover/test_scrutineer.py.orig
MT 4 +++ hypothesis-hypothesis-python-6.100.1/hypothesis-python/tests/nocover/test_scrutineer.py
a28269 5 @@ -52,7 +52,11 @@
MT 6      # multi-line report strings which we expect to see in explain-mode output.
7      # The list length is the number of explainable bugs, usually one.
8      test_file = str(testdir.makepyfile(file_contents))
9 -    pytest_stdout = str(testdir.runpytest_inprocess(test_file, "--tb=native").stdout)
10 +    pytest_stdout = str(
11 +        testdir.runpytest_inprocess(
12 +            test_file, "--tb=native", "-p", "no:black", "-p", "no:cov", "-p", "no:mypy"
13 +        ).stdout
14 +    )
15  
6d6935 16      crash = "AttributeError: module 'blib2to3.pygram' has no attribute 'python_symbols'"
MT 17      if crash in pytest_stdout: