Skip to content

Commit

Permalink
Maintenance updates
Browse files Browse the repository at this point in the history
  • Loading branch information
carsongee committed Oct 6, 2023
1 parent 9647dee commit c123f5d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11.0-rc - 3.11"
- "3.11"
- "3.12.0-rc - 3.12"

steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions pytest_pylint/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,4 +391,5 @@ def repr_failure(self, excinfo, style=None):

def reportinfo(self):
"""Generate our test report"""
# pylint: disable=no-member
return self.fspath, None, f"[pylint] {self.parent.rel_path}"
2 changes: 0 additions & 2 deletions pytest_pylint/pylint_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@
"""Pylint reporter classes."""
import sys

from pylint.interfaces import IReporter
from pylint.reporters import BaseReporter


class ProgrammaticReporter(BaseReporter):
"""Reporter that replaces output with storage in list of dictionaries"""

__implements__ = IReporter
extension = "prog"

def __init__(self, output=None):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
[tox]
envlist =
py3{7, 8, 9}-pylint{23}-pytest{54}
py3{7, 8, 9, 10}-pylint{213, 214}-pytest{71}
py3{7, 8, 9, 10, 11}-pylint{215, latest, main}-pytest{71, latest, main}
py3{8, 9}-pylint{23, 30}-pytest{54}
py3{8, 9, 10}-pylint{213, 214, 30}-pytest{71}
py3{8, 9, 10, 11, 12}-pylint{215, latest, main}-pytest{71, latest, main}
coverage
qa
skip_missing_interpreters = true

[testenv]
usedevelop = true
deps =
pylint30: pylint~=3.0
pylint23: pylint~=2.3.1
pylint213: pylint~=2.13.9
pylint214: pylint~=2.14.5
Expand Down

0 comments on commit c123f5d

Please sign in to comment.