File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ jobs:
118
118
- name : Run pylint checks
119
119
run : |
120
120
. venv/bin/activate
121
- pip install .
121
+ pip install . --no-deps
122
122
pip list | grep 'astroid\|pylint'
123
123
pre-commit run --hook-stage manual pylint-with-spelling --all-files
124
124
@@ -148,7 +148,7 @@ jobs:
148
148
- name : Run spelling checks
149
149
run : |
150
150
. venv/bin/activate
151
- pip install .
151
+ pip install . --no-deps
152
152
pytest tests/ -k unittest_spelling
153
153
154
154
documentation :
Original file line number Diff line number Diff line change 94
94
- name : Run pytest
95
95
run : |
96
96
. venv/bin/activate
97
- pip install .
97
+ pip install . --no-deps
98
98
pytest -m primer_stdlib --primer-stdlib -n auto -vv
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ jobs:
113
113
- name : Run pylint primer
114
114
run : |
115
115
. venv/bin/activate
116
- pip install .
116
+ pip install . --no-deps
117
117
python tests/primer/__main__.py run --type=main --batches=${{ matrix.batches }} --batchIdx=${{ matrix.batchIdx }} 2>warnings.txt
118
118
- name : Echo warnings
119
119
if : success() || failure()
Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ jobs:
187
187
- name : Run pylint primer
188
188
run : |
189
189
. venv/bin/activate
190
- pip install .
190
+ pip install . --no-deps
191
191
python tests/primer/__main__.py run --type=pr --batches=${{ matrix.batches }} --batchIdx=${{ matrix.batchIdx }} 2>warnings.txt
192
192
- name : Echo warnings
193
193
if : success() || failure()
Original file line number Diff line number Diff line change 78
78
- name : Run pytest
79
79
run : |
80
80
. venv/bin/activate
81
- pip install .
81
+ pip install . --no-deps
82
82
pip list | grep 'astroid\|pylint'
83
83
python -m pytest --durations=10 --benchmark-disable --cov --cov-report= tests/
84
84
- name : Run functional tests with minimal messages config
@@ -161,7 +161,7 @@ jobs:
161
161
run : |
162
162
. venv/bin/activate
163
163
pip install pygal
164
- pip install .
164
+ pip install . --no-deps
165
165
pip list | grep 'astroid\|pylint'
166
166
pytest --exitfirst \
167
167
--benchmark-only \
@@ -227,6 +227,6 @@ jobs:
227
227
- name : Run pytest
228
228
run : |
229
229
. venv\\Scripts\\activate
230
- pip install .
230
+ pip install . --no-deps
231
231
pip list | grep 'astroid\|pylint'
232
232
python -m pytest --durations=10 --benchmark-disable tests/
You can’t perform that action at this time.
0 commit comments