diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-05-26 11:23:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-26 15:23:23 +0600 |
commit | 8215bf8fd64db41fd7f4972fba905c4274a3e81c (patch) | |
tree | 04f06b52f6967469142ab8580f71673595545b1c /.github | |
parent | 59065fa04d7d255f4a6452707af34fc9e4420d4d (diff) | |
download | pyjwt-8215bf8fd64db41fd7f4972fba905c4274a3e81c.tar.gz |
Adjust expected exceptions in option merging tests for PyPy3 (#763)
* Adjust expected exceptions in option merging tests for PyPy3
PyPy3 raises ValueError rather than TypeError when trying to combine
a dict and a str in dict unpacking. Update the test expectations
appropriately.
Fixes #580
* Enable GHA testing on Python 3.11 and all PyPy3 versions
Enable testing on all Python 3 versions supported by GitHub Actions
at the moment. While at it, fix the tox invocation for Python 3.10.
* drop pypy3.7 from tox
Co-authored-by: Asif Saif Uddin <auvipy@gmail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5e4843f..148933f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,7 +18,8 @@ jobs: strategy: matrix: platform: ["ubuntu-latest", "windows-latest"] - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", + "3.11.0-beta - 3.11", "pypy-3.8", "pypy-3.9"] steps: - uses: "actions/checkout@v3" |