(pytester: Pytester)
| 422 | |
| 423 | |
| 424 | def test_pytester_subprocess(pytester: Pytester) -> None: |
| 425 | testfile = pytester.makepyfile("def test_one(): pass") |
| 426 | assert pytester.runpytest_subprocess(testfile).ret == 0 |
| 427 | |
| 428 | |
| 429 | def test_pytester_subprocess_via_runpytest_arg(pytester: Pytester) -> None: |
nothing calls this directly
no test coverage detected