Skip to content

Commit

Permalink
ci: add testing for 3.11 (#620)
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Schreiner <[email protected]>
  • Loading branch information
henryiii authored Oct 6, 2022
1 parent 7a96100 commit 7116070
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.8", "3.10"]
python-version: ["3.6", "3.8", "3.11-dev"]
os: [ubuntu-latest, windows-latest, macos-latest]
include:
- python-version: 'pypy-3.7'
os: ubuntu-latest
- python-version: 'pypy-3.8'
- python-version: 'pypy-3.9'
os: ubuntu-latest
runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import nox

ALL_PYTHONS = ["3.6", "3.7", "3.8", "3.9", "3.10"]
ALL_PYTHONS = ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]

nox.options.sessions = ["lint", "tests"]

Expand Down
2 changes: 1 addition & 1 deletion tests/test_local.py
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,7 @@ def test_list_processes(self):
assert list(local.list_processes())

def test_pgrep(self):
assert list(local.pgrep("python"))
assert list(local.pgrep("[pP]ython"))

def _generate_sigint(self):
with pytest.raises(KeyboardInterrupt):
Expand Down

0 comments on commit 7116070

Please sign in to comment.