Skip to content

Commit

Permalink
chore: add Python 3.11 in test.yml (#41)
Browse files Browse the repository at this point in the history
* chore: add Python 3.11 in test.yml

* Update tox.ini

* Update test.yml
  • Loading branch information
eshaan7 committed May 3, 2023
1 parent b50a970 commit 648b308
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
strategy:
fail-fast: false
max-parallel: 6
max-parallel: 7
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
include:
- python-version: 3.5
os: ubuntu-20.04
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
tox
- name: Report test-coverage to DeepSource
if: ${{ matrix.python-version == '3.10' }}
if: ${{ matrix.python-version == '3.11' }}
run: |
# Install the CLI
curl https://deepsource.io/cli | sh
Expand Down
9 changes: 5 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[tox]
envlist =
py{35,36,37,38,39}-django22,
py{36,37,38,39,310}-django30
py{36,37,38,39,310}-django31
py{36,37,38,39,310}-django32
py{38,39,310}-django40
py{36,37,38,39,310,311}-django30
py{36,37,38,39,310,311}-django31
py{36,37,38,39,310,311}-django32
py{38,39,310,311}-django40

[testenv]
commands =
Expand Down Expand Up @@ -35,3 +35,4 @@ python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311

0 comments on commit 648b308

Please sign in to comment.