Skip to content

Commit

Permalink
Add Python 3.12 to tested versions.
Browse files Browse the repository at this point in the history
Also only submit coveralls information on latest Python version.
  • Loading branch information
alunduil committed Dec 23, 2023
1 parent 7044d83 commit aa092d7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/poetry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
- "3.9" # EOL 2025-10
- "3.10" # EOL 2026-10
- "3.11" # EOL 2027-10
- "3.12" # EOL 2028-10
experimental: [false]
include:
- python-version: 3.x
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
- "3.9" # EOL 2025-10
- "3.10" # EOL 2026-10
- "3.11" # EOL 2027-10
- "3.12" # EOL 2028-10
experimental: [false]
include:
- python-version: 3.x
Expand All @@ -35,8 +36,12 @@ jobs:
- name: poetry install
run: poetry install
- name: poetry run pytest
run: |
poetry run pytest
- name: poetry run coveralls
if : matrix.python-version == '3.x'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
poetry run pytest
poetry run coveralls
poetry run coveralls --service=github || poetry run coveralls --service=github-actions
1 change: 1 addition & 0 deletions .github/workflows/scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
- "3.9" # EOL 2025-10
- "3.10" # EOL 2026-10
- "3.11" # EOL 2027-10
- "3.12" # EOL 2028-10
experimental: [false]
include:
- python-version: 3.x
Expand Down

0 comments on commit aa092d7

Please sign in to comment.