-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bdd2d0d
commit 0b36beb
Showing
16 changed files
with
621 additions
and
1,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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Django Drip Coverage | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- develop | ||
pull_request: | ||
branches: | ||
- main | ||
- develop | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
env: | ||
# Set the secret for the code coverage tool | ||
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | ||
|
||
strategy: | ||
matrix: | ||
python-version: ["3.12"] | ||
|
||
steps: | ||
# Check out the code from the repository | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
# Set up Python environment | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
# Install dependencies | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install django==4.2 | ||
pip install -r requirements/github-actions-requirements.txt | ||
# Prepare code coverage reporting | ||
- name: Install Code Climate Test Reporter | ||
run: | | ||
pip install codeclimate-test-reporter | ||
# Run tests | ||
- name: Run tests with coverage | ||
run: | | ||
coverage run -m pytest . | ||
coverage report --fail-under=90 -m | ||
coverage xml | ||
# Upload coverage data to Code Climate | ||
- name: Setup Code Climate test-reporter | ||
run: | | ||
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter | ||
chmod +x ./cc-test-reporter | ||
./cc-test-reporter before-build | ||
./cc-test-reporter after-build --coverage-input-type coverage.py --exit-code $? |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Django Drips Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- develop | ||
pull_request: | ||
branches: | ||
- main | ||
- develop | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | ||
django-version: ["4.2", "5.0"] | ||
# Exclude incompatible combinations (if Django 5.0 does not support older Python versions) | ||
exclude: | ||
- python-version: "3.8" | ||
django-version: "5.0" | ||
- python-version: "3.9" | ||
django-version: "5.0" | ||
|
||
steps: | ||
# Checkout the repository | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
# Set up the Python environment based on the matrix versions | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
# Install dependencies | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install django==${{ matrix.django-version }} | ||
pip install -r requirements/github-actions-requirements.txt | ||
# Run tests | ||
- name: Install coverage codeclimate | ||
run: | | ||
pytest . |
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,22 +1,103 @@ | ||
*.pyc | ||
MANIFEST | ||
#pyenv | ||
.python-version | ||
|
||
dist/ | ||
.tox/ | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Distribution / packaging | ||
.Python | ||
build/ | ||
docs/_build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
*.egg-info/ | ||
.idea/ | ||
.installed.cfg | ||
*.egg | ||
MANIFEST | ||
|
||
sqlite.db | ||
settings.py | ||
# PyInstaller | ||
# Usually these files are written by a python script from a template | ||
# before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
*.manifest | ||
*.spec | ||
|
||
env* | ||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
|
||
__pycache__ | ||
# Virtualenv | ||
# If you use a virtualenv, it's better to ignore its directory. | ||
venv/ | ||
ENV/ | ||
env/ | ||
.venv/ | ||
.pyenv/ | ||
|
||
*DS_Store | ||
# tox | ||
.tox/ | ||
.cache/ | ||
.coverage | ||
nosetests.xml | ||
coverage.xml | ||
*.cover | ||
.hypothesis/ | ||
|
||
.vscode | ||
# mypy | ||
.mypy_cache/ | ||
.dmypy.json | ||
dmypy.json | ||
|
||
#pyenv | ||
.python-version | ||
# Pytest cache | ||
.pytest_cache/ | ||
|
||
# Django specific | ||
*.log | ||
db.sqlite3 | ||
media/ | ||
staticfiles/ | ||
|
||
# Ignore migrations files (optional, you might want to track migrations in OSS) | ||
# **/migrations/ | ||
|
||
# Ignore Django secret key file (if it exists) | ||
.env | ||
.env.* | ||
|
||
# celery beat schedule file | ||
celerybeat-schedule | ||
|
||
# macOS | ||
.DS_Store | ||
|
||
# System files | ||
Thumbs.db | ||
desktop.ini | ||
|
||
# Jupyter Notebook | ||
.ipynb_checkpoints/ | ||
|
||
# IDEs | ||
.vscode/ | ||
.idea/ | ||
*.sublime-workspace | ||
*.sublime-project | ||
|
||
# Documentation artifacts | ||
docs/_build/ | ||
|
||
# SQLite | ||
sqlite.db |
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
Oops, something went wrong.