Skip to content

Commit

Permalink
Merge pull request #2225 from locustio/run-tests-on-python-3.11
Browse files Browse the repository at this point in the history
Run tests on Python 3.11
cyberw authored Oct 14, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
2 parents dff5d08 + d281167 commit 8f6b244
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -20,6 +20,7 @@ jobs:
- { name: "flake8", python: "3.10", os: ubuntu-latest, tox: "flake8" }
- { name: "black", python: "3.10", os: ubuntu-latest, tox: "black" }
- { name: "mypy", python: "3.10", os: ubuntu-latest, tox: "mypy" }
- { name: "3.11", python: "3.11-dev", os: ubuntu-latest, tox: py311 }
- { name: "3.10", python: "3.10", os: ubuntu-latest, tox: py310 }
- { name: "3.9", python: "3.9", os: ubuntu-latest, tox: py39 }
- { name: "3.8", python: "3.8", os: ubuntu-latest, tox: py38 }
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -23,6 +23,7 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Intended Audience :: Developers
Intended Audience :: System Administrators
Topic :: Software Development :: Testing
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ envlist =
flake8
black
mypy
py{37,38,39,310}
py{37,38,39,310,311-dev}

[flake8]
extend-exclude = build,examples/issue_*.py,src/readthedocs-sphinx-search/

0 comments on commit 8f6b244

Please sign in to comment.