Skip to content

Commit 93b9a79

Browse files
committed
Fix failing CI
The `pytest-flake8` plugin broke with a recent update of `flake8`. According to this thread: pytest-dev/pytest#9217 (comment) running these kinds of checks within `pytest` is an anti-pattern and should be avoided. So I've moved `black`, `mypy`, and `flake8` checks away from their pytest plugins.
1 parent b7002cb commit 93b9a79

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ jobs:
4242
4343
- name: Flake8 lints
4444
run: |
45-
python -m pytest --flake8 parselglossy
45+
python -m flake8 parselglossy
4646
4747
- name: Black lints
4848
run: |
49-
python -m pytest --black parselglossy
49+
python -m black --check parselglossy
5050
5151
- name: Mypy lints
5252
run: |
53-
python -m pytest --mypy parselglossy
53+
python -m mypy parselglossy
5454
5555
- name: Upload coverage to Codecov
5656
uses: codecov/codecov-action@v3

parselglossy/grammars/atoms.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,10 @@
3434

3535
try:
3636
import pyparsing as pp
37+
3738
if pp.__version__.split(".")[0] < "3":
38-
# Import local copy
39-
from . import pyparsing as pp # type: ignore
39+
# Import local copy
40+
from . import pyparsing as pp # type: ignore
4041
except ImportError:
4142
# Import local copy
4243
from . import pyparsing as pp # type: ignore

parselglossy/grammars/getkw.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,10 @@
4343

4444
try:
4545
import pyparsing as pp
46+
4647
if pp.__version__.split(".")[0] < "3":
47-
# Import local copy
48-
from . import pyparsing as pp # type: ignore
48+
# Import local copy
49+
from . import pyparsing as pp # type: ignore
4950
except ImportError:
5051
# Import local copy
5152
from . import pyparsing as pp # type: ignore

pyproject.toml

-3
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,7 @@ test = [
7474
"coverage",
7575
"hypothesis",
7676
"pytest",
77-
"pytest-black",
7877
"pytest-cov",
79-
"pytest-flake8",
80-
"pytest-mypy",
8178
"pytest-sugar",
8279
]
8380
dev = [

0 commit comments

Comments
 (0)