-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feat/improve_default_copy
- Loading branch information
Showing
48 changed files
with
1,409 additions
and
307 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,10 +15,15 @@ jobs: | |
python-version: [ 3.9, "3.10", "3.11", "3.12" ] # latest release minus two | ||
requirements-file: [ | ||
dj32_cms41.txt, | ||
dj40_cms41.txt, | ||
dj41_cms41.txt, | ||
dj42_cms41.txt, | ||
dj50_cms41.txt, | ||
dj51_cms41.txt, | ||
] | ||
exclude: | ||
- requirements-file: dj50_cms41.txt | ||
python-version: 3.9 | ||
- requirements-file: dj51_cms41.txt | ||
python-version: 3.9 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
@@ -34,7 +39,7 @@ jobs: | |
python setup.py install | ||
- name: Run coverage | ||
run: coverage run setup.py test | ||
run: coverage run ./test_settings.py | ||
|
||
- name: Upload Coverage to Codecov | ||
uses: codecov/codecov-action@v4 | ||
|
@@ -47,14 +52,19 @@ jobs: | |
python-version: [ 3.9, "3.10", "3.11", "3.12" ] # latest release minus two | ||
requirements-file: [ | ||
dj32_cms41.txt, | ||
dj40_cms41.txt, | ||
dj41_cms41.txt, | ||
dj42_cms41.txt, | ||
dj50_cms41.txt, | ||
dj51_cms41.txt, | ||
] | ||
exclude: | ||
- requirements-file: dj50_cms41.txt | ||
python-version: 3.9 | ||
- requirements-file: dj51_cms41.txt | ||
python-version: 3.9 | ||
|
||
services: | ||
postgres: | ||
image: postgres:12 | ||
image: postgres:13 | ||
env: | ||
POSTGRES_USER: postgres | ||
POSTGRES_PASSWORD: postgres | ||
|
@@ -78,7 +88,7 @@ jobs: | |
python setup.py install | ||
- name: Run coverage | ||
run: coverage run setup.py test | ||
run: coverage run ./test_settings.py | ||
env: | ||
DATABASE_URL: postgres://postgres:[email protected]/postgres | ||
|
||
|
@@ -93,10 +103,15 @@ jobs: | |
python-version: [ 3.9, "3.10", "3.11", "3.12" ] # latest release minus two | ||
requirements-file: [ | ||
dj32_cms41.txt, | ||
dj40_cms41.txt, | ||
dj41_cms41.txt, | ||
dj42_cms41.txt, | ||
dj50_cms41.txt, | ||
dj51_cms41.txt, | ||
] | ||
exclude: | ||
- requirements-file: dj50_cms41.txt | ||
python-version: 3.9 | ||
- requirements-file: dj51_cms41.txt | ||
python-version: 3.9 | ||
|
||
services: | ||
mysql: | ||
|
@@ -122,7 +137,7 @@ jobs: | |
python setup.py install | ||
- name: Run coverage | ||
run: coverage run setup.py test | ||
run: coverage run ./test_settings.py | ||
env: | ||
DATABASE_URL: mysql://[email protected]/djangocms_test | ||
|
||
|
@@ -135,7 +150,7 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
python-version: ['3.11'] | ||
requirements-file: ['dj42_cms41.txt'] | ||
requirements-file: ['dj51_cms41.txt'] | ||
cms-version: [ | ||
'https://github.com/django-cms/django-cms/archive/develop-4.tar.gz' | ||
] | ||
|
@@ -158,7 +173,7 @@ jobs: | |
python setup.py install | ||
- name: Run coverage | ||
run: coverage run setup.py test | ||
run: coverage run ./test_settings.py | ||
|
||
- name: Upload Coverage to Codecov | ||
uses: codecov/codecov-action@v4 | ||
|
@@ -194,7 +209,7 @@ jobs: | |
python setup.py install | ||
- name: Run coverage | ||
run: coverage run setup.py test | ||
run: coverage run ./test_settings.py | ||
|
||
- name: Upload Coverage to Codecov | ||
uses: codecov/codecov-action@v4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "2.0.0" | ||
__version__ = "2.1.0" |
Oops, something went wrong.