-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add test generation and github action execution
- Loading branch information
Showing
8 changed files
with
89 additions
and
2 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
48 changes: 48 additions & 0 deletions
48
{{ cookiecutter.project_slug }}/.github/workflows/test.yml
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,48 @@ | ||
name: test | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ "*" ] | ||
|
||
jobs: | ||
check-pre-commit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.x | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
- run: python -m pip install pre-commit | ||
- uses: actions/cache@v3 | ||
with: | ||
path: ~/.cache/pre-commit | ||
key: {{ "pre-commit|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}" }} | ||
- run: pre-commit run --show-diff-on-failure --color=always --all-files | ||
|
||
test-backend: | ||
runs-on: ubuntu-latest | ||
services: | ||
db: | ||
image: docker.io/postgres | ||
ports: | ||
- 5432:5432 | ||
env: | ||
POSTGRES_USER: {{ cookiecutter.project_slug }} | ||
POSTGRES_PASSWORD: {{ cookiecutter.project_slug }} | ||
POSTGRES_DB: {{ cookiecutter.project_slug }} | ||
steps: | ||
- name: install system dependencies | ||
run: | | ||
pip install pipenv | ||
sudo apt install npm | ||
npm install -g pnpm | ||
- uses: actions/checkout@v4 | ||
- name: install project dependencies | ||
run: pipenv sync --dev | ||
- name: manage.py --help | ||
run: pipenv run ./src/manage.py --help | ||
- name: pytest | ||
run: pipenv 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
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
Empty file.
6 changes: 6 additions & 0 deletions
6
...cutter.project_slug }}/src/{{ cookiecutter.project_slug }}/api/tests/test_django_setup.py
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,6 @@ | ||
from django.shortcuts import resolve_url | ||
|
||
|
||
def test_openapi_schema_loads(client): | ||
response = client.get(resolve_url("openapi_schema")) | ||
assert response.status_code == 200 |
Empty file.
11 changes: 11 additions & 0 deletions
11
...utter.project_slug }}/src/{{ cookiecutter.project_slug }}/core/tests/test_django_setup.py
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,11 @@ | ||
import pytest | ||
|
||
|
||
def test_django_loads(): | ||
from django.conf import settings | ||
assert len(settings.INSTALLED_APPS) > 0 | ||
|
||
|
||
@pytest.mark.django_db() | ||
def test_db_connection(django_user_model): | ||
assert django_user_model.objects.all().count() == 0 |