-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (39 loc) · 1.3 KB
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Tests
on: [push, pull_request]
jobs:
tests:
env:
FORCE_COLOR: "1"
PRE_COMMIT_COLOR: "always"
strategy:
fail-fast: false
name: "Integration testing"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Set up environment"
run: |
docker compose build --build-arg MULTIPLE_PYTHON=True
docker compose up -d
- name: "Wait for docker to finish building"
run: sleep 10
- name: "Run tests"
run: docker compose exec django_test nox -r --force-color
- name: Upload documentation
uses: actions/upload-artifact@v4
with:
name: docs
path: docs/_build
- name: Combine coverage data and display human readable report
run: |
docker compose exec django_test nox --session "coverage(django='5.0')"
- name: Create coverage report and copy to artifacts
run: |
docker compose exec django_test nox --session "coverage(django='5.0')" -- xml
docker compose exec django_test cat coverage.xml > coverage.xml
- name: Upload coverage report
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: "Shut down environment"
run: docker compose down