(*args)
| 1581 | |
| 1582 | |
| 1583 | def get_test_path(*args): |
| 1584 | if _IS_SYNC: |
| 1585 | root_dir = Path(__file__).resolve().parent |
| 1586 | else: |
| 1587 | root_dir = Path(__file__).resolve().parent.parent |
| 1588 | return os.path.join(root_dir, *args) |
| 1589 | |
| 1590 | |
| 1591 | def generate_test_classes( |
no test coverage detected