Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@ env:
jobs:
test:
strategy:
fail-fast: false
matrix:
python:
- 3.7
- 3.8
- 3.9
- "3.10"
- "3.11-dev"
platform:
- ubuntu-latest
- macos-latest
Expand Down
4 changes: 4 additions & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,9 @@ norecursedirs = dist docs build .git .eggs .tox
addopts = --durations=10 -v -rxXs --doctest-modules
filterwarnings =
error
# 3.11: Pending release of https://github.com/certifi/python-certifi/pull/199
ignore:path is deprecated. Use files\(\) instead.*:DeprecationWarning
# 3.11: Pending release of https://github.com/brettcannon/gidgethub/pull/185
ignore:'cgi' is deprecated and slated for removal in Python 3.13:DeprecationWarning
junit_duration_report = call
junit_suite_name = cherry_picker_test_suite
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{310, 39, 38, 37}
py{311, 310, 39, 38, 37}
isolated_build = true

[testenv]
Expand Down