-
Notifications
You must be signed in to change notification settings - Fork 9
214 lines (181 loc) · 6.97 KB
/
test.yml
File metadata and controls
214 lines (181 loc) · 6.97 KB
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
# Configuration for running tests with GitHub Actions
#
# NOTE: Pin actions to a specific commit to avoid having the authentication
# token stolen if the Action is compromised. See the comments and links here:
# https://github.com/pypa/gh-action-pypi-publish/issues/27
#
name: test
# Only build PRs, the main branch, and releases. Pushes to branches will only
# be built when a PR is opened. This avoids duplicated buids in PRs comming
# from branches in the origin repository (1 for PR and 1 for push).
on:
pull_request:
push:
branches:
- main
release:
types:
- published
permissions: {}
# Use bash by default in all jobs
defaults:
run:
# The -l {0} is necessary for conda environments to be activated
# But this breaks on MacOS if using actions/setup-python:
# https://github.com/actions/setup-python/issues/132
# -e makes sure builds fail if any command fails
shell: bash -e -o pipefail -l {0}
jobs:
#############################################################################
# Run tests
test:
name: ${{ matrix.os }} python=${{ matrix.python }} dependencies=${{ matrix.dependencies }} cached=${{ matrix.cached }}
runs-on: ${{ matrix.os }}
strategy:
# Otherwise, the workflow would stop if a single job fails. We want to
# run all of them to catch failures in different combinations.
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: ["3.9", "3.13"]
cached:
- true
include:
- python: "3.9"
dependencies: oldest
- python: "3.13"
dependencies: latest
# Run once without caching the datasets to make sure everything works
- os: ubuntu-latest
python: "3.13"
dependencies: latest
cached: false
env:
REQUIREMENTS: env/requirements-build.txt env/requirements-test.txt
steps:
# Checks-out your repository under $GITHUB_WORKSPACE
- name: Checkout
uses: actions/checkout@v6
with:
# Need to fetch more than the last commit so that setuptools-scm can
# create the correct version string. If the number of commits since
# the last release is greater than this, the version still be wrong.
# Increase if necessary.
fetch-depth: 100
# The GitHub token is preserved by default but this job doesn't need
# to be able to push to GitHub.
persist-credentials: false
# Need the tags so that setuptools-scm can form a valid version number
- name: Fetch git tags
run: git fetch origin 'refs/tags/*:refs/tags/*'
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
- name: Collect requirements
run: |
echo "Install Dependente to capture dependencies:"
python -m pip install dependente==0.3.0
echo ""
echo "Capturing run-time dependencies:"
if [[ "${{ matrix.dependencies }}" == "oldest" ]]; then
dependente --source install --oldest > requirements-full.txt
else
dependente --source install > requirements-full.txt
fi
echo ""
echo "Capturing dependencies from:"
for requirement in $REQUIREMENTS
do
echo " $requirement"
cat $requirement >> requirements-full.txt
done
echo ""
echo "Collected dependencies:"
cat requirements-full.txt
- name: Get the pip cache folder
id: pip-cache
run: |
echo "dir="$(pip cache dir) >> $GITHUB_OUTPUT
- name: Setup caching for pip packages
uses: actions/cache@v5
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('requirements-full.txt') }}
- name: Install requirements
run: python -m pip install --requirement requirements-full.txt
# Needs to be editable for coverage reporting to work
- name: Install the package in editable mode
run: python -m pip install --no-deps --editable .
- name: List installed packages
run: python -m pip freeze
- name: Cache the datasets
if: matrix.cached
uses: actions/cache@v5
with:
path: ${{ runner.temp }}/cache/ensaio
key: ensaio-data-${{ hashFiles('ensaio/_fetchers.py') }}
- name: Run the tests
run: make test
env:
# Define directory where sample data will be stored
ENSAIO_DATA_DIR: ${{ runner.temp }}/cache/ensaio/
# Don't spam Zenodo from CI
ENSAIO_DATA_FROM_GITHUB: true
- name: Rename the coverage artifact
run: mv .coverage .coverage.${{ matrix.os }}_${{ matrix.python }}_${{ matrix.dependencies }}_${{ matrix.cached }}
- name: Upload coverage as artifact
uses: actions/upload-artifact@v7
with:
path: .coverage.*
name: coverage_${{ matrix.os }}_${{ matrix.python }}_${{ matrix.dependencies }}_${{ matrix.cached }}
if-no-files-found: ignore
include-hidden-files: true
#############################################################################
# Check coverage and upload a report
# Inspired by: https://hynek.me/articles/ditch-codecov-python/
coverage:
name: test coverage is 100%
if: always()
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
# The GitHub token is preserved by default but this job doesn't need
# to be able to push to GitHub.
persist-credentials: false
- uses: actions/setup-python@v6
with:
# Use latest Python, so it understands all syntax.
python-version: "3.13"
- name: Get the pip cache folder
id: pip-cache
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- name: Setup caching for pip packages
uses: actions/cache@v5
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-coverage
- uses: actions/download-artifact@v8
with:
pattern: coverage_*
# If true, the downloaded artifacts will be in the same directory
# specified by path.
merge-multiple: true
- name: Install coverage.py
run: python -m pip install --upgrade coverage[toml]
- name: Combine coverage
run: python -m coverage combine
- name: Make an HTML report
run: python -m coverage html --skip-empty
- name: Report coverage on the job summary
run: python -m coverage report --format=markdown >> $GITHUB_STEP_SUMMARY
- name: Fail if coverage is not 100%
run: python -m coverage report --fail-under=100
- name: Upload HTML report if check failed
uses: actions/upload-artifact@v7
with:
name: html-report
path: htmlcov
if: ${{ failure() }}