We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1699ed9 commit 0413f34Copy full SHA for 0413f34
2 files changed
.github/workflows/test.yml
@@ -57,7 +57,7 @@ jobs:
57
pip install -r requirements-dev.txt
58
59
- name: Run tests
60
- run: pytest test_grammar.py -v
+ run: PYTHONPATH=. pytest test_grammar.py -v
61
62
test-java:
63
runs-on: ubuntu-latest
python/__init__.py
@@ -1 +1,4 @@
1
-from python.main import get_tree
+try:
2
+ from .main import get_tree
3
+except ImportError:
4
+ pass
0 commit comments