unit tests #35
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: unit tests | |
on: | |
push: # run on every push or PR to any branch | |
pull_request: | |
schedule: # run automatically on main branch each Tuesday at 11am | |
- cron: "0 16 * * 2" | |
jobs: | |
python-unit: | |
name: Python unit tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: ["3.9", "3.10", "3.11"] | |
django: ["3.2", "4.0", "4.1", "4.2"] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
# We base the python cache on the hash of all requirements files, so that | |
# if any change, the cache is invalidated. | |
- name: Cache pip | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: pip-${{ hashFiles('setup.py') }} | |
restore-keys: | | |
pip-${{ hashFiles('setup.py') }} | |
pip- | |
- name: Install package with dependencies | |
run: | | |
pip install -e . | |
pip install -e '.[test]' | |
pip install codecov | |
- name: Setup test settings | |
run: | | |
cp ci/testsettings.py testsettings.py | |
python -c "import uuid; print('SECRET_KEY = \'%s\'' % uuid.uuid4())" >> testsettings.py | |
- name: Run pytest | |
run: python -m pytest --cov=pucas --cov-report=xml | |
- name: Upload test coverage to Codecov | |
uses: codecov/codecov-action@v3 |