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