Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mw-sre: support py 3.11 #2662

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/pythonchecks.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
pytest==6.2.5
wheel==0.37.1
flake8==4.0.1
flake8-unused-arguments==0.0.9
flake8-sfs==0.0.3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.9', '3.10']
python: ['3.9', '3.10', '3.11-dev']
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -27,10 +27,10 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y libgnutls28-dev
pip install -U pip
pip install -U pip wheel
pip install -r .github/pythonchecks.txt
- name: Run tests
run: |
flake8 modules/mediawiki modules/letsencrypt --ignore=E501,W503,SFS301
pytest -vv -n auto
pytest -vv -W error -n auto
mypy modules/mediawiki modules/letsencrypt --ignore-missing-imports