Skip to content

Commit

Permalink
Update coverage and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun committed Mar 13, 2024
1 parent dafc302 commit d5861ea
Show file tree
Hide file tree
Showing 16 changed files with 11 additions and 65 deletions.
4 changes: 3 additions & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[run]
branch = True
source = djangocms_text_ckeditor
source =
djangocms_text
djangocms_text_ckeditor
omit =
migrations/*
tests/*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ "3.10", "3.11"]
python-version: [ "3.10", "3.11", "3.12"]
requirements-file: [
dj32_cms311.txt,
dj32_cms41.txt,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ classifiers = [
"Framework :: Django :: 5.0",
"Framework :: Django CMS",
"Framework :: Django CMS :: 3.11",
"Framework :: Django CMS :: 4.0",
"Framework :: Django CMS :: 4.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand Down
6 changes: 0 additions & 6 deletions tests/requirements/dj22_cms37.txt

This file was deleted.

6 changes: 0 additions & 6 deletions tests/requirements/dj22_cms38.txt

This file was deleted.

6 changes: 0 additions & 6 deletions tests/requirements/dj22_cms40.txt

This file was deleted.

5 changes: 0 additions & 5 deletions tests/requirements/dj31_cms38.txt

This file was deleted.

4 changes: 0 additions & 4 deletions tests/requirements/dj32_cms310.txt

This file was deleted.

4 changes: 0 additions & 4 deletions tests/requirements/dj32_cms311.txt

This file was deleted.

4 changes: 0 additions & 4 deletions tests/requirements/dj32_cms39.txt

This file was deleted.

4 changes: 0 additions & 4 deletions tests/requirements/dj32_cms41.txt

This file was deleted.

4 changes: 0 additions & 4 deletions tests/requirements/dj40_cms311.txt

This file was deleted.

4 changes: 0 additions & 4 deletions tests/requirements/dj40_cms41.txt

This file was deleted.

4 changes: 0 additions & 4 deletions tests/requirements/dj41_cms311.txt

This file was deleted.

4 changes: 0 additions & 4 deletions tests/requirements/dj41_cms41.txt

This file was deleted.

13 changes: 6 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,20 @@
envlist =
ruff
frontend
py{39,310,311}-dj{40}-cms{311,41}
py{39,310,311}-dj{41}-cms{311,41}
py{39,310,311}-dj{42}-cms{311,41}
py{311}-dj{50}-cms{41}
py{310,311,312}-dj{42}-cms{311,41}
py{310,311,312}-dj{50}-cms{311,41}

skip_missing_interpreters=True

[testenv]
deps =
-r{toxinidir}/tests/requirements/base.txt
dj32: Django>=3.2,<3.3
dj42: Django>=4.2,<5.0
dj50: Django~=5.0rc1,<5.1
dj50: Django>=5.0,<5.1
dj51: Django>=5.1,<5.2
dj52: Django>=5.2,<6.0
cms311: django-cms>=3.11,<4
cms40: git+https://github.com/django-cms/django-cms@release/4.0.x
cms40: git+https://github.com/django-cms/django-cms@release/4.0.1.x
cms41: git+https://github.com/django-cms/django-cms@develop-4

commands =
Expand Down

0 comments on commit d5861ea

Please sign in to comment.