Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3,035 changes: 80 additions & 2,955 deletions tools/check_dsl_language_evaluation.py

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions tools/dsl_language_evaluation/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
"""Split support package for the DSL language-evaluation checker."""

import sys
from pathlib import Path

_REPO_ROOT = Path(__file__).resolve().parents[2]
_PYTHON_PACKAGES = _REPO_ROOT / "implementations" / "python" / "packages"
for _import_root in (_REPO_ROOT, _PYTHON_PACKAGES):
if str(_import_root) not in sys.path:
sys.path.insert(0, str(_import_root))
Loading