Skip to content

Bump whitenoise from 6.4.0 to 6.5.0 #163

Bump whitenoise from 6.4.0 to 6.5.0

Bump whitenoise from 6.4.0 to 6.5.0 #163

name: Unit tests
on:
push:
branches:
- "main"
pull_request:
jobs:
test-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.9" # matches current Python in production
- name: "Run Python tests (on Docker)"
run: |
make clean test-ci
CONTAINER_ID=$(docker ps -alq)
docker cp $CONTAINER_ID:/app/python_coverage .
- name: "Upload coverage to Codecov"
uses: codecov/codecov-action@v3
with:
files: python_coverage/coverage.xml
verbose: true # optional (default = false)