-
Notifications
You must be signed in to change notification settings - Fork 0
190 lines (152 loc) · 4.74 KB
/
app.yaml
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
name: Python Checks
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
tags:
- 'v*'
jobs:
lints_pipeline:
name: Lints CI Pipeline
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.11']
env:
ENV: CI
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
cache: 'pip'
- name: Install dependencies
run: |
make install PYTHON=python
- name: Lint Code (use uppercase TODO, XXX, FIXME, NOTE and explain nopep8)
run: |
make lint-comment
- name: Lint Code (use empty main inits)
run: |
make lint-emptyinit
- name: Lint Code (sort requirements)
run: |
make lint-requirements
- name: Lint Code (requirements complete)
run: |
make requirements-complete
- name: Lint Code (use f"" style formating)
run: |
make lint-stringformat
- name: Lint Code (indent in fours)
run: |
make lint-indent
- name: Lint Code (no f"a", "{a}", or f'{a}')
run: |
make lint-forgottenformat PYTHON=python
- name: Lint Code (missing trailing comma)
run: |
make lint-flake8
- name: Lint Code (pycodestyle)
run: |
make lint-pycodestyle
- name: Lint Code (type-check)
run: |
make lint-type-check
- name: Lint Code (pylint)
run: |
make lint-pylint
tests_pipeline:
name: Tests CI Pipeline
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.11']
ci_node_total: [3]
ci_node_index: [0, 1, 2]
env:
ENV: CI
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
cache: 'pip'
- name: Start Redis
uses: supercharge/[email protected]
with:
redis-version: 6
redis-port: 6380
- name: Restore test-result Cache
uses: actions/cache@v3
with:
path: test-results/*
key: test-results-v1-${{ matrix.python }}-${{ hashFiles('test/*.py') }}-${{ hashFiles('test/data/*') }}-${{ github.sha }}-${{ matrix.ci_node_index }}
restore-keys: |
test-results-v1-${{ matrix.python }}-${{ hashFiles('test/*.py') }}-${{ hashFiles('test/data/*') }}
test-results-v1-${{ matrix.python }}-
- name: Install dependencies
run: |
make install PYTHON=python
- name: Run test on Node ${{ matrix.ci_node_index }}
run: |
PYTHON_NAME="${{ matrix.python }}" CUR_NODE_IX="${{ matrix.ci_node_index }}" TOTAL_NODES="${{ matrix.ci_node_total }}" make split-test
- name: Upload Artifact(results)
uses: actions/upload-artifact@v3
with:
name: results-${{ matrix.python }}-${{ matrix.ci_node_index }}
path: test-results/results-${{ matrix.python }}-${{ matrix.ci_node_index }}.xml
- name: Upload Artifact(coverage reports)
uses: actions/upload-artifact@v3
with:
name: coverage-${{ matrix.python }}-${{ matrix.ci_node_index }}
path: .coverage
- name: Git Check (tests may not alter any git visible files)
run: |
git status -sb --porcelain
[ -z "$(git status --porcelain)" ]
coverage_pipeline:
name: Coverage CI Pipeline
needs: tests_pipeline
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.11']
env:
ENV: CI
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
cache: 'pip'
- name: Install dependencies
run: |
make install PYTHON=python
- name: Restore test-result Cache
uses: actions/cache@v3
with:
path: test-results/*
key: test-results-v1-${{ matrix.python }}-${{ hashFiles('test/*.py') }}-${{ hashFiles('test/data/*') }}
- name: Clean test-result Cache
run: |
rm -r test-results/ || true
mkdir -p test-results/parts/
- name: Download all results and coverage
uses: actions/download-artifact@v3
- name: Merge results
run: |
mv results-${{ matrix.python }}-*/results-${{ matrix.python }}-* test-results/parts/
python -m test merge --dir test-results --out-fname results.xml
tail -v -n +1 test-results/*.xml
- name: Merge coverage reports
run: |
coverage combine coverage*/.coverage
coverage xml -o coverage/reports/xml_report.xml
coverage html -d coverage/reports/html_report
coverage report