Get the directory for this test's files.
(self)
| 873 | return None |
| 874 | |
| 875 | def get_test_dir(self) -> Path: |
| 876 | """Get the directory for this test's files.""" |
| 877 | test_dir = Path(__file__).parent / "op_tests" / self.name |
| 878 | test_dir.mkdir(parents=True, exist_ok=True) |
| 879 | return test_dir |
| 880 | |
| 881 | def generate_test_files(self, verbose: bool = False) -> Tuple[Path, Path, Path]: |
| 882 | """ |
no outgoing calls
no test coverage detected