Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Dec 7, 2022
2 parents 27af321 + 9708c37 commit d706a01
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
matrix:
python:
- "3.7"
- "3.10"
- "3.11"
- "3.12"
# Workaround for actions/setup-python#508
dev:
- -dev
Expand All @@ -48,6 +48,12 @@ jobs:
- macos-latest
- windows-latest
include:
- python: "3.8"
platform: ubuntu-latest
- python: "3.9"
platform: ubuntu-latest
- python: "3.10"
platform: ubuntu-latest
- python: pypy3.9
platform: ubuntu-latest
runs-on: ${{ matrix.platform }}
Expand Down
3 changes: 3 additions & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ norecursedirs=dist build .tox .eggs
addopts=--doctest-modules
doctest_optionflags=ALLOW_UNICODE ELLIPSIS
filterwarnings=
# Ensure ResourceWarnings are emitted
default::ResourceWarning

# Suppress deprecation warning in flake8
ignore:SelectableGroups dict interface is deprecated::flake8

Expand Down
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ testing =
# upstream
pytest >= 6
pytest-checkdocs >= 2.4
pytest-flake8
pytest-flake8; \
# workaround for tholo/pytest-flake8#87
python_version < "3.12"
# workaround for tholo/pytest-flake8#87
flake8 < 5
pytest-black >= 0.3.7; \
Expand Down

0 comments on commit d706a01

Please sign in to comment.