(session: Any)
| 600 | |
| 601 | |
| 602 | def pytest_sessionstart(session: Any) -> None: |
| 603 | # Clean up directory where mypyc tests write intermediate files on failure |
| 604 | # to avoid any confusion between test runs |
| 605 | if os.path.isdir(mypyc_output_dir): |
| 606 | shutil.rmtree(mypyc_output_dir) |
| 607 | |
| 608 | |
| 609 | # This function name is special to pytest. See |
nothing calls this directly
no test coverage detected
searching dependent graphs…