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
11 changes: 4 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,34 +7,31 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: python -m pip install --upgrade pip wheel
- run: pip install tox tox-gh-actions
- run: python -m pip install --upgrade pip wheel tox
- run: tox -eflake8
- run: tox -edocs
tests:
name: tests
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
python: ['3.10', '3.11', '3.12', '3.13', '3.14', 'pypy-3.11']
python: ['3.10', '3.11', '3.12', '3.13', '3.14', '3.14t', 'pypy3.11']
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- run: python -m pip install --upgrade pip wheel
- run: pip install tox tox-gh-actions
- run: python -m pip install --upgrade pip wheel tox
- run: tox
coverage:
name: coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: python -m pip install --upgrade pip wheel
- run: pip install tox tox-gh-actions
- run: python -m pip install --upgrade pip wheel tox
- run: tox
- uses: codecov/codecov-action@v3
with:
Expand Down
13 changes: 0 additions & 13 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
[tox]
envlist=flake8,py{310,311,312,313,314},docs
skip_missing_interpreters=True

[gh-actions]
python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313
3.14: py314
pypy-3: pypy3

[testenv]
commands=
pip install -e .
Expand Down
Loading