We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dfcc39 commit e6632e8Copy full SHA for e6632e8
.github/workflows/tests.yml
@@ -27,9 +27,6 @@ jobs:
27
with:
28
python-version: ${{ matrix.python-version }}
29
30
- - name: Uninstall pytest-socket
31
- run: pip uninstall -y pytest-socket || true
32
-
33
- name: Install Poetry (if you use poetry)
34
run: pip install poetry
35
@@ -41,6 +38,9 @@ jobs:
41
38
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
42
39
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
43
40
+ - name: Uninstall pytest-socket
+ run: pip uninstall -y pytest-socket || true
+
44
- name: Run pytest with coverage
45
run: |
46
PYTHONPATH=. pytest \
0 commit comments