File tree Expand file tree Collapse file tree 5 files changed +8
-5
lines changed Expand file tree Collapse file tree 5 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ jobs:
119
119
- name : Run pylint checks
120
120
run : |
121
121
. venv/bin/activate
122
- pip install .
122
+ pip install . --no-deps
123
123
pip list | grep 'astroid\|pylint'
124
124
pre-commit run --hook-stage manual pylint-with-spelling --all-files
125
125
@@ -149,6 +149,7 @@ jobs:
149
149
- name : Run spelling checks
150
150
run : |
151
151
. venv/bin/activate
152
+ pip install . --no-deps
152
153
pytest tests/ -k unittest_spelling
153
154
154
155
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 68
68
- name : Run pytest
69
69
run : |
70
70
. venv/bin/activate
71
+ pip install . --no-deps
71
72
pip list | grep 'astroid\|pylint'
72
73
python -m pytest --durations=10 --benchmark-disable --cov --cov-report= tests/
73
74
- name : Run functional tests with minimal messages config
@@ -149,7 +150,7 @@ jobs:
149
150
run : |
150
151
. venv/bin/activate
151
152
pip install pygal
152
- pip install .
153
+ pip install . --no-deps
153
154
pip list | grep 'astroid\|pylint'
154
155
pytest --exitfirst \
155
156
--benchmark-only \
@@ -215,6 +216,7 @@ jobs:
215
216
- name : Run pytest
216
217
run : |
217
218
. venv\\Scripts\\activate
219
+ pip install . --no-deps
218
220
pip list | grep 'astroid\|pylint'
219
221
python -m pytest --durations=10 --benchmark-disable tests/
220
222
You can’t perform that action at this time.
0 commit comments