Skip to content

Commit

Permalink
chore: use the new github actions reporter for pylint (#1827)
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
  • Loading branch information
henryiii committed May 16, 2024
1 parent 666a2c3 commit f8894e6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 36 deletions.
32 changes: 0 additions & 32 deletions .github/matchers/pylint.json

This file was deleted.

4 changes: 1 addition & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ jobs:
- name: Check manifest
run: pipx run nox -s check_manifest
- name: PyLint checks
run: |
echo "::add-matcher::$GITHUB_WORKSPACE/.github/matchers/pylint.json"
pipx run nox -s pylint
run: pipx run nox -s pylint -- --output-format=github

test:
name: Test cibuildwheel on ${{ matrix.os }} (${{ matrix.python_version }})
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def pylint(session: nox.Session) -> None:
Run pylint.
"""

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


Expand Down

0 comments on commit f8894e6

Please sign in to comment.