Skip to content

Commit

Permalink
ci: fix tests running
Browse files Browse the repository at this point in the history
  • Loading branch information
vinitkumar committed Nov 30, 2024
1 parent 22fef2c commit 37b523b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,17 @@ concurrency:
jobs:
tests:
name: ${{ matrix.database }} Python ${{ matrix.python-version }}
runs-on: ubuntu-22.04
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- '3.13'

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -50,7 +51,7 @@ jobs:

coverage:
name: Coverage
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
needs: tests
steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ envlist =
py310-django42-cms311
py310-django32-cms{38, 39, 310}
py39-django32-cms{38, 39, 310}
py38-django32-cms{38, 39, 310}
skip_missing_interpreters=True

[testenv]
Expand All @@ -16,7 +15,7 @@ deps =
commands =
{envpython} --version
{env:COMMAND:coverage} erase
{env:COMMAND:coverage} run setup.py test
{env:COMMAND:coverage} run tests/settings.py
{env:COMMAND:coverage} combine --keep
{env:COMMAND:coverage} report --show-missing

Expand Down

0 comments on commit 37b523b

Please sign in to comment.