(self, pytester: Pytester)
| 1006 | result.stdout.no_fnmatch_line("rootdir: *test_header0, inifile: tox.ini") |
| 1007 | |
| 1008 | def test_no_summary(self, pytester: Pytester) -> None: |
| 1009 | p1 = pytester.makepyfile( |
| 1010 | """ |
| 1011 | def test_no_summary(): |
| 1012 | assert false |
| 1013 | """ |
| 1014 | ) |
| 1015 | result = pytester.runpytest(p1, "--no-summary") |
| 1016 | result.stdout.no_fnmatch_line("*= FAILURES =*") |
| 1017 | |
| 1018 | def test_showlocals(self, pytester: Pytester) -> None: |
| 1019 | p1 = pytester.makepyfile( |
nothing calls this directly
no test coverage detected