Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 20 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ jobs:
name:
- Python 3.9 Tests
- Python 3.10 Tests
- Python 3.9 Tests Coverage
- Python 3.11 Tests
- Python 3.12 Tests
- Python 3.13 Tests
- Python 3.12 Tests Coverage
- Code Checks
include:
- name: Python 3.9 Tests
Expand All @@ -39,12 +42,24 @@ jobs:
python: '3.10'
toxdir: cli
toxenv: py310-nocov
- name: Python 3.9 Tests Coverage
python: 3.9
- name: Python 3.11 Tests
python: '3.11'
toxdir: cli
toxenv: py311-nocov
- name: Python 3.12 Tests
python: '3.12'
toxdir: cli
toxenv: py312-nocov
- name: Python 3.13 Tests
python: '3.13'
toxdir: cli
toxenv: py39-cov
toxenv: py313-nocov
- name: Python 3.12 Tests Coverage
python: 3.12
toxdir: cli
toxenv: py312-cov
- name: Code Checks
python: 3.9
python: 3.12
toxdir: cli
toxenv: code-linters

Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{39,310}-cov
py{39,310,311,312,313}-cov
code-linters

# Default testenv. Used to run tests on all python versions.
Expand All @@ -14,6 +14,7 @@ usedevelop =
allowlist_externals =
bash
deps =
setuptools
-r tests/requirements.txt
commands =
nocov: pytest -n auto -l -v --basetemp={envtmpdir} --html=report.html --ignore=src tests/
Expand Down