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 666a2c3 commit f8894e6Copy full SHA for f8894e6
.github/matchers/pylint.json
.github/workflows/test.yml
@@ -28,9 +28,7 @@ jobs:
28
- name: Check manifest
29
run: pipx run nox -s check_manifest
30
- name: PyLint checks
31
- run: |
32
- echo "::add-matcher::$GITHUB_WORKSPACE/.github/matchers/pylint.json"
33
- pipx run nox -s pylint
+ run: pipx run nox -s pylint -- --output-format=github
34
35
test:
36
name: Test cibuildwheel on ${{ matrix.os }} (${{ matrix.python_version }})
noxfile.py
@@ -50,7 +50,7 @@ def pylint(session: nox.Session) -> None:
50
Run pylint.
51
"""
52
53
- session.install("pylint", ".")
+ session.install("pylint>=3.2", "-e.")
54
session.run("pylint", "cibuildwheel", *session.posargs)
55
56
0 commit comments