(opts: Sequence[str])
| 904 | |
| 905 | def test_options_on_small_file_do_not_blow_up(pytester: Pytester) -> None: |
| 906 | def runfiletest(opts: Sequence[str]) -> None: |
| 907 | reprec = pytester.inline_run(*opts) |
| 908 | passed, skipped, failed = reprec.countoutcomes() |
| 909 | assert failed == 2 |
| 910 | assert skipped == passed == 0 |
| 911 | |
| 912 | path = str( |
| 913 | pytester.makepyfile( |
no test coverage detected