(self)
| 538 | self._check_relative_imports(depth) |
| 539 | |
| 540 | def test_main_relative_import(self): |
| 541 | for depth in range(2, 5): |
| 542 | if verbose > 1: print("Testing main relative imports at depth:", depth) |
| 543 | self._check_relative_imports(depth, "__main__") |
| 544 | |
| 545 | def test_run_name(self): |
| 546 | depth = 1 |
nothing calls this directly
no test coverage detected