-
Notifications
You must be signed in to change notification settings - Fork 12
179 lines (150 loc) · 4.91 KB
/
testing.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
name: testing
on:
push:
branches:
- develop
pull_request:
# Cancel running workflows when additional changes are pushed
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-using-a-fallback-value
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
cache: pip
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/requirements.txt
pip install .[dev]
- name: Lint
run: pre-commit run --all-files --show-diff-on-failure
build-test-bench:
name: "Build test bench containers"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build test bench container
uses: docker/bake-action@v5
with:
load: true
files: tests/integration/dockerfiles/docker-bake.hcl
set: |
*.cache-to=type=gha,scope=global,mode=max
*.cache-from=type=gha,scope=global
test:
services:
local_mongodb:
image: mongo:5.0
ports:
- 27017:27017
needs: [build-test-bench]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: pyproject.toml
- name: Install mongo-tools
run: |
wget https://fastdl.mongodb.org/tools/db/mongodb-database-tools-ubuntu2204-x86_64-100.10.0.deb
sudo apt install ./mongodb-database-tools-*-100.10.0.deb
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Load test bench containers
uses: docker/bake-action@v5
with:
load: true
files: tests/integration/dockerfiles/docker-bake.hcl
set: |
*.cache-from=type=gha,scope=global
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/requirements.txt
pip install .[tests]
- name: Unit tests
run: |
# COVERAGE_FILE=.coverage.1 \
pytest \
--pytest-durations-min=1 \
--cov=jobflow_remote --cov-report=xml:.coverage-unit.xml --cov-config pyproject.toml \
--ignore tests/integration \
- name: Integration tests
run: |
# COVERAGE_FILE=.coverage.2 \
pytest \
--pytest-durations-min=1 \
--cov=jobflow_remote --cov-report=xml:.coverage-integration.xml --cov-config pyproject.toml \
tests/integration
# combining the reports with --cov-append did not seem to work
- name: Generate coverage report
run: |
coverage combine .coverage-unit.xml .coverage-integration.xml
coverage xml -o .coverage-all.xml
- name: Upload unit tests coverage report to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
file: .coverage-unit.xml
flags: unit_tests
name: unit_tests
- name: Upload integration tests coverage report to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
file: .coverage-integration.xml
flags: integration_tests
name: integration_tests
- name: Upload all (unit+integration) tests coverage report to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
file: .coverage-all.xml
flags: all_tests
name: all_tests
docs:
name: Build documentation
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install docs dependencies
run: |
python -m pip install -U pip
pip install -U setuptools wheel
# Required to generate rst files from markdown
sudo apt install pandoc
pip install -r requirements/requirements.txt
pip install .[docs]
- name: Build Sphinx docs
working-directory: doc
run: |
# cannot use sphinx build directly as the makefile handles generation
# of some rst files
make html