-
Notifications
You must be signed in to change notification settings - Fork 13
158 lines (149 loc) · 5.07 KB
/
ci_test.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
name: CI Tests
on:
push:
branches:
- main
pull_request:
schedule:
# run every Monday at 6am UTC
- cron: '0 6 * * 1'
env:
SETUP_XVFB: True # avoid issues if mpl tries to open a GUI window
TOXARGS: '-v'
jobs:
check_commit:
# Check the commit message for the presence of keywords that indicate
# that the CI tests should be skipped, in favor of running doc builds only.
# Messages like [docs only], [docs-only], or [skip-tests] will skip
# Only the CI part of the workflow, not the doc build.
# [skip ci], [ci skip] etc. are instead handled by GitHub itself and will skip
# the entire workflow.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
# Found this solution at
# https://monadical.com/posts/filters-github-actions.html#Case-2-Pull-request
- name: check if message indicates that tests should be skipped
id: check_commit
run: |
message=$(git log -1 --pretty=format:'%B')
re="\[(docs.only|skip-tests).*\]"
if [[ $message =~ $re ]]; then
echo "match=true" >> $GITHUB_OUTPUT
echo "$message -> Match is true"
else
echo "$message -> Match is false"
fi
outputs:
match: ${{ steps.check_commit.outputs.match }}
docs-tests:
name: ${{ matrix.tox_env }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
python: '3.10'
tox_env: 'build_docs'
- os: ubuntu-latest
python: '3.10'
tox_env: 'linkcheck'
steps:
- name: Check out repository
uses: actions/checkout@v3
with:
submodules: true
- name: Check out that no sensitive environment variable is shared
run: env
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install base dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Install system dependencies
run: sudo apt-get -y install graphviz pandoc
- name: Print Python, pip, setuptools, and tox versions
run: |
python -c "import sys; print(f'Python {sys.version}')"
python -c "import pip; print(f'pip {pip.__version__}')"
python -c "import setuptools; print(f'setuptools {setuptools.__version__}')"
python -c "import tox; print(f'tox {tox.__version__}')"
- name: Run tests
run: tox -e ${{ matrix.tox_env }}
ci-tests:
needs: check_commit
if: ${{ needs.check_commit.outputs.match != 'true' }}
name: ${{ matrix.os }}, ${{ matrix.tox_env }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
python: '3.10'
tox_env: 'codestyle'
- os: ubuntu-latest
python: '3.10'
tox_env: 'py310-test-cov'
- os: ubuntu-latest
python: '3.10'
tox_env: 'py310-test-alldeps-cov'
use_remote_data: true
- os: macos-14
python: '3.10'
tox_env: 'py310-test-alldeps-cov'
use_remote_data: true
- os: ubuntu-latest
python: '3.10'
tox_env: 'py310-test-devdeps'
use_remote_data: true
continue-on-error: true
- os: ubuntu-latest
python: '3.8'
tox_env: 'py38-test-oldestdeps-cov'
use_remote_data: true
- os: macos-latest
python: '3.10'
tox_env: 'py310-test'
- os: windows-latest
python: '3.10'
tox_env: 'py310-test'
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install base dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Install graphviz dependency
if: "endsWith(matrix.tox_env, 'build_docs')"
run: sudo apt-get -y install graphviz
- name: Print Python, pip, setuptools, and tox versions
run: |
python -c "import sys; print(f'Python {sys.version}')"
python -c "import pip; print(f'pip {pip.__version__}')"
python -c "import setuptools; print(f'setuptools {setuptools.__version__}')"
python -c "import tox; print(f'tox {tox.__version__}')"
- name: Run tests
if: "! matrix.use_remote_data"
run: tox -e ${{ matrix.tox_env }}
- name: Run tests with remote data
if: "matrix.use_remote_data"
run: |
pip install pytest-remotedata
tox -e ${{ matrix.tox_env }} -- --remote-data=any
- name: Upload coverage to codecov
if: "endsWith(matrix.tox_env, '-cov')"
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml