Skip to content

Commit a670ed4

Browse files
committed
WIP: TEMPORARY TEST FOR VERBOSE UV.
1 parent fdf56e1 commit a670ed4

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/bnf-pytest.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,17 @@ jobs:
2828
python-version: ${{ matrix.python-version }}
2929
enable-cache: true
3030

31+
- name: temp
32+
run: |
33+
which antlr4
34+
echo $PATH
35+
file /tmp/antlr4
36+
ls -alh /tmp/antlr4
37+
cat /tmp/antlr4
38+
3139
- name: dependencies
3240
working-directory: bnf
33-
run: uv sync --locked --extra dev
41+
run: uv sync --locked --extra dev --verbose
3442

3543
- name: pytest
3644
working-directory: bnf

bnf/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def generate_antlr_parsers(self):
2020
print(f"Generating parser for {grammar}...")
2121
subprocess.run(
2222
[
23-
"antlr4",
23+
"/tmp/antlr4",
2424
"-Dlanguage=Python3",
2525
str(grammar_path),
2626
"-visitor",

0 commit comments

Comments
 (0)