We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6e4084 commit 44b79c6Copy full SHA for 44b79c6
.github/workflows/ci.yml
@@ -12,9 +12,20 @@ jobs:
12
- uses: actions/setup-python@v5
13
with:
14
python-version: "3.11"
15
+
16
- name: Install deps
17
run: |
18
python -m pip install --upgrade pip
- pip install pytest==8.3.3 z3-solver==4.13.0.0
19
+ pip install pytest==8.3.3 z3-solver==4.13.0.0 gradio==4.44.0
20
21
+ - name: Compile for early syntax errors
22
+ run: |
23
+ python -m py_compile gradio_demo.py
24
+ python - <<'PY'
25
+ import glob, py_compile
26
+ [py_compile.compile(p, doraise=True) for p in glob.glob("tests/*.py")]
27
+ print("compiled tests ok")
28
+ PY
29
30
- name: Run tests
31
run: pytest -ra
0 commit comments