(pytester: Pytester)
| 453 | |
| 454 | |
| 455 | def test_pytester_run_no_timeout(pytester: Pytester) -> None: |
| 456 | testfile = pytester.makepyfile("def test_no_timeout(): pass") |
| 457 | assert pytester.runpytest_subprocess(testfile).ret == ExitCode.OK |
| 458 | |
| 459 | |
| 460 | def test_pytester_run_with_timeout(pytester: Pytester) -> None: |
nothing calls this directly
no test coverage detected