Skip to content

Commit 1d4bdc7

Browse files
Update ci.yml
1 parent 9f94765 commit 1d4bdc7

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,16 @@ jobs:
1010
- uses: actions/setup-python@v5
1111
with:
1212
python-version: "3.11"
13-
- name: Install deps
13+
- name: Install pytest only
1414
run: |
1515
python -m pip install --upgrade pip
16-
pip install -r requirements.txt
16+
pip install pytest==8.3.3
17+
- name: Show env
18+
run: |
19+
python -V
20+
pip list
21+
ls -la
22+
ls -la tests || true
23+
cat pytest.ini || true
1724
- name: Run tests
18-
run: pytest -q
25+
run: pytest -ra

0 commit comments

Comments
 (0)