-
Notifications
You must be signed in to change notification settings - Fork 6
156 lines (140 loc) · 3.93 KB
/
ci.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
name: CI
on:
pull_request:
paths-ignore:
- '**/*.md'
push:
branches:
- main
schedule:
- cron: 0 3 * * *
jobs:
tests:
strategy:
matrix:
os:
- ubuntu-latest
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
include:
# only test oldest and most recent Python on other platforms
- os: macos-latest
python-version: '3.8'
- os: macos-latest
python-version: '3.11'
- os: windows-latest
python-version: '3.8'
- os: windows-latest
python-version: '3.11'
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Source
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Build library
run: |
python -m pip install --upgrade pip
python -m pip install .
python -m pip install --requirement requirements/tests.txt
- name: Run test suite
run: |
python -m pip freeze
pytest --color yes
- uses: actions/upload-artifact@v3
if: failure()
with:
name: test_results
path: test_results/
minimal-dependencies:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Build library
run: |
python -m pip install --upgrade pip
python -m pip install tomli tomli_w
python scripts/hardpin_minimal_dependencies.py
python -m pip install .
python -m pip install --requirement requirements/tests.txt
- name: Run test suite
run: |
python -m pip freeze
pytest --color yes
image-tests:
name: Image tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Build library
run: |
python -m pip install --upgrade pip
python -m pip install .
python -m pip install --requirement requirements/tests.txt
- name: Run Image Tests
run: |
pytest --color=yes --mpl -m mpl_image_compare \
--mpl-generate-summary=html \
--mpl-results-path=pytest_mpl_results \
--mpl-baseline-path=tests/baseline
- name: Generate new image baseline
if: failure()
run: |
pytest --color=yes --mpl -m mpl_image_compare \
--mpl-generate-path=pytest_mpl_new_baseline \
--last-failed
# always attempt to upload artifacts, even
# (and especially) in case of failure.
- name: Upload pytest-mpl report
if: always()
uses: actions/upload-artifact@v3
with:
name: cmyt_pytest_mpl_results
path: pytest_mpl_results/*
- name: Upload pytest-mpl baseline
if: always()
uses: actions/upload-artifact@v3
with:
name: cmyt_pytest_mpl_new_baseline
path: pytest_mpl_new_baseline/*
if-no-files-found: ignore
type-check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
# oldest and newest supported versions
- '3.8'
- '3.11'
concurrency:
# auto-cancel any in-progress job *on the same branch*
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.python-version }}-typecheck
cancel-in-progress: true
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Build
run: |
python -m pip install --upgrade pip
python -m pip install .
python -m pip install --requirement requirements/typecheck.txt
- name: Run mypy
run: mypy cmyt