Skip to content

Commit f8894e6

Browse files
authored
chore: use the new github actions reporter for pylint (pypa#1827)
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
1 parent 666a2c3 commit f8894e6

File tree

3 files changed

+2
-36
lines changed

3 files changed

+2
-36
lines changed

.github/matchers/pylint.json

Lines changed: 0 additions & 32 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@ jobs:
2828
- name: Check manifest
2929
run: pipx run nox -s check_manifest
3030
- name: PyLint checks
31-
run: |
32-
echo "::add-matcher::$GITHUB_WORKSPACE/.github/matchers/pylint.json"
33-
pipx run nox -s pylint
31+
run: pipx run nox -s pylint -- --output-format=github
3432

3533
test:
3634
name: Test cibuildwheel on ${{ matrix.os }} (${{ matrix.python_version }})

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def pylint(session: nox.Session) -> None:
5050
Run pylint.
5151
"""
5252

53-
session.install("pylint", ".")
53+
session.install("pylint>=3.2", "-e.")
5454
session.run("pylint", "cibuildwheel", *session.posargs)
5555

5656

0 commit comments

Comments
 (0)