(*args)
| 1566 | |
| 1567 | |
| 1568 | def get_test_path(*args): |
| 1569 | if _IS_SYNC: |
| 1570 | root_dir = Path(__file__).resolve().parent |
| 1571 | else: |
| 1572 | root_dir = Path(__file__).resolve().parent.parent |
| 1573 | return os.path.join(root_dir, *args) |
| 1574 | |
| 1575 | |
| 1576 | def generate_test_classes( |
no test coverage detected