We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75c3a9c commit dd0c0efCopy full SHA for dd0c0ef
.github/workflows/ci.yml
@@ -53,7 +53,8 @@ jobs:
53
# We avoid "--upgrade" as we do version tests for the "pip" dependency.
54
python -m pip install --ignore-installed --editable .[dev]
55
56
- - name: "Lint"
+ # Separate Pylint as it fails on Python 3.12 for unrelated reasons.
57
+ - name: "Lint without pylint"
58
run: |
59
mypy .
60
ruff .
@@ -62,6 +63,11 @@ jobs:
62
63
pip-extra-reqs pip_check_reqs
64
pip-missing-reqs pip_check_reqs
65
66
+ - name: "Lint pylint"
67
+ if: matrix.python-version != '3.12-dev'
68
+ run: |
69
+ pylint pip_check_reqs tests
70
+
71
- name: "Run tests"
72
73
pytest -s -vvv --cov-fail-under 100 --cov=pip_check_reqs/ --cov=tests tests/ --cov-report=xml
0 commit comments