Integration test for issue #3775
(pytester: Pytester)
| 1889 | |
| 1890 | |
| 1891 | def test_collect_pytest_prefix_bug_integration(pytester: Pytester) -> None: |
| 1892 | """Integration test for issue #3775""" |
| 1893 | p = pytester.copy_example("config/collect_pytest_prefix") |
| 1894 | result = pytester.runpytest(p) |
| 1895 | result.stdout.fnmatch_lines(["* 1 passed *"]) |
| 1896 | |
| 1897 | |
| 1898 | def test_collect_pytest_prefix_bug(pytestconfig): |
nothing calls this directly
no test coverage detected
searching dependent graphs…