Added possibility to send all emails with django q #383
Workflow file for this run
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
name: Tests | |
on: | |
push: | |
branches-ignore: | |
- 'main' | |
workflow_dispatch: | |
pull_request_target: | |
types: [assigned, opened, synchronize, reopened] | |
branches-ignore: | |
- 'main' | |
pull_request: | |
types: [opened, reopened] | |
jobs: | |
testing: | |
runs-on: ubuntu-20.04 | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: [3.10.5] | |
fail-fast: [false] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install coverage | |
- name: Debug Coverage Configuration | |
run: | | |
coverage debug sys | |
coverage debug config | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Run Tests | |
run: | | |
python manage.py test appointment.tests --parallel=10 --shuffle --verbosity=1 |