Skip to content

Commit

Permalink
Try to fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
protoroto committed Oct 26, 2023
1 parent 5fb02e6 commit fef8f6b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
continue-on-error: ${{ matrix.continue-on-error }}
strategy:
matrix:
python-version: [3.12, 3.11, 3.10.x, 3.9]
python-version: ["3.12", "3.11", "3.10", "3.9"]
django: [50, 42, 32]
cms: [nocms, cms311, async]
continue-on-error: [false]
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
python -m pip install --upgrade pip setuptools tox>4
- name: Test with tox
env:
TOX_ENV: ${{ format('py-django{1}-{2}', matrix.python-version, matrix.django, matrix.cms) }}
TOX_ENV: ${{ format('py{0}-django{1}-{2}', matrix.python-version, matrix.django, matrix.cms) }}
COMMAND: coverage run
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_SERVICE_NAME: github
Expand Down
10 changes: 5 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ envlist =
ruff
pypi-description
towncrier
py{312}-django{42,50}-{nocms,async}
py{311}-django{42,41,40,32}-{cms311,nocms,async}
py{310}-django{42,41,40,32}-{cms311,nocms,async}
py{39}-django{32}-{cms311,nocms,async}
py{3.12}-django{42,50}-{nocms,async}
py{3.11}-django{42,41,40,32}-{cms311,nocms,async}
py{3.10}-django{42,41,40,32}-{cms311,nocms,async}
py{3.9}-django{32}-{cms311,nocms,async}
minversion = 3.23

[testenv]
Expand All @@ -24,7 +24,7 @@ deps=
django50: django~=5.0b1
cms311: https://github.com/yakky/django-cms/archive/release/3.11.x.zip
cms311: djangocms-text-ckeditor>=5.0,<6.0
py312: setuptools
py3.12: setuptools
-r{toxinidir}/requirements-test.txt
async: channels[daphne]~=4.0.0
passenv =
Expand Down

0 comments on commit fef8f6b

Please sign in to comment.