Skip to content

Commit

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

* Update tox.ini
  • Loading branch information
eshaan7 authored May 3, 2023
1 parent e94f9f0 commit 41c539b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 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: 5
max-parallel: 6
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.6
os: ubuntu-20.04
Expand All @@ -41,7 +41,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
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tox]
envlist =
docs-html,
py{36,37,38,39,310}-flask1
py{36,37,38,39,310}-flask2
py{36,37,38,39,310,311}-flask1
py{36,37,38,39,310,311}-flask2

[testenv]
commands =
Expand All @@ -28,6 +28,7 @@ python =
3.8: py38, docs-html
3.9: py39
3.10: py310
3.11: py311

[testenv:docs-html]
deps =
Expand Down

0 comments on commit 41c539b

Please sign in to comment.