(self, pytester: Pytester)
| 72 | reprec.assertoutcome(passed=1) |
| 73 | |
| 74 | def test_syntax_error_in_module(self, pytester: Pytester) -> None: |
| 75 | modcol = pytester.getmodulecol("this is a syntax error") |
| 76 | with pytest.raises(modcol.CollectError): |
| 77 | modcol.collect() |
| 78 | with pytest.raises(modcol.CollectError): |
| 79 | modcol.collect() |
| 80 | |
| 81 | def test_module_considers_pluginmanager_at_import(self, pytester: Pytester) -> None: |
| 82 | modcol = pytester.getmodulecol("pytest_plugins='xasdlkj',") |
nothing calls this directly
no test coverage detected