We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65d6a6a commit 1b4935cCopy full SHA for 1b4935c
.github/workflows/ci.yml
@@ -12,17 +12,9 @@ jobs:
12
- uses: actions/setup-python@v5
13
with:
14
python-version: "3.11"
15
- - name: Install pytest only
+ - name: Install deps
16
run: |
17
python -m pip install --upgrade pip
18
- pip install pytest==8.3.3
19
- - name: Show repo and test file
20
- run: |
21
- python -V
22
- ls -la
23
- echo "--- tests dir ---"
24
- ls -la tests || true
25
- echo "--- test file content ---"
26
- test -f tests/test_ci.py && sed -n '1,120p' tests/test_ci.py || echo "tests/test_ci.py is missing"
27
- - name: Run just this file
28
- run: pytest -vv tests/test_ci.py
+ pip install pytest==8.3.3 z3-solver==4.13.0.0
+ - name: Run tests
+ run: pytest -ra
0 commit comments