(testdir: str | None)
| 21 | |
| 22 | |
| 23 | def setup_test_dir(testdir: str | None) -> None: |
| 24 | if testdir: |
| 25 | # Prepend test directory to sys.path, so runtest() will be able |
| 26 | # to locate tests |
| 27 | sys.path.insert(0, os.path.abspath(testdir)) |
| 28 | |
| 29 | |
| 30 | def setup_process() -> None: |
no test coverage detected
searching dependent graphs…