forked from PrefectHQ/prefect
-
Notifications
You must be signed in to change notification settings - Fork 0
208 lines (177 loc) · 6.67 KB
/
python-tests.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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
name: Python tests
env:
# enable colored output
# https://github.com/pytest-dev/pytest/issues/7443
PY_COLORS: 1
on:
pull_request:
paths:
- .github/workflows/python-tests.yaml
- "**/*.py"
- requirements.txt
- requirements-dev.txt
- setup.cfg
- Dockerfile
push:
branches:
- main
permissions:
contents: read
# Limit concurrency by workflow/branch combination.
#
# For pull request builds, pushing additional changes to the
# branch will cancel prior in-progress and pending builds.
#
# For builds triggered on a branch push, additional changes
# will wait for prior builds to complete before starting.
#
# https://docs.github.com/en/actions/using-jobs/using-concurrency
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
run-tests-sqlite:
name: Test with SQLite
strategy:
matrix:
os:
- ubuntu-latest
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
pytest-options:
- "--exclude-services"
- "--only-services"
include:
# Run 3.7 tests with lower bound pins
- python-version: "3.7"
lower-bound-requirements: true
# Include Docker image builds on the service test run, and disallow the test
# suite from building images automaticlly in fixtures
- pytest-options: "--only-services"
build-docker-images: true
fail-fast: false
runs-on: ${{ matrix.os }}
timeout-minutes: 45
steps:
- name: Display current test matrix
run: echo '${{ toJSON(matrix) }}'
- uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 0
- name: Set up Docker Buildx
if: ${{ matrix.build-docker-images }}
uses: docker/setup-buildx-action@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: "requirements*.txt"
- name: Pin requirements to lower bounds
if: ${{ matrix.lower-bound-requirements }}
# Creates lower bound files then replaces the input files so we can do a normal install
run: |
./scripts/generate-lower-bounds.py requirements.txt > requirements-lower.txt
./scripts/generate-lower-bounds.py requirements-dev.txt > requirements-dev-lower.txt
mv requirements-lower.txt requirements.txt
mv requirements-dev-lower.txt requirements-dev.txt
- name: Build test image
if: ${{ matrix.build-docker-images }}
uses: docker/build-push-action@v3
with:
context: .
# TODO: We do not need the UI in these tests and we may want to add a build-arg to disable building it
# so that CI test runs are faster
build-args: |
PYTHON_VERSION=${{ matrix.python-version }}
PREFECT_EXTRAS=[dev]
tags: prefecthq/prefect:dev-python${{ matrix.python-version }}
outputs: type=docker,dest=/tmp/image.tar
- name: Test Docker image
if: ${{ matrix.build-docker-images }}
run: |
docker load --input /tmp/image.tar
docker run --rm prefecthq/prefect:dev-python${{ matrix.python-version }} prefect version
- name: Build Conda flavored test image
if: ${{ matrix.build-docker-images }}
uses: docker/build-push-action@v3
with:
context: .
build-args: |
PYTHON_VERSION=${{ matrix.python-version }}
BASE_IMAGE=prefect-conda
PREFECT_EXTRAS=[dev]
tags: prefecthq/prefect:dev-python${{ matrix.python-version }}-conda
outputs: type=docker,dest=/tmp/image-conda.tar
- name: Test Conda flavored Docker image
if: ${{ matrix.build-docker-images }}
run: |
docker load --input /tmp/image-conda.tar
docker run --rm prefecthq/prefect:dev-python${{ matrix.python-version }}-conda prefect version
docker run --rm prefecthq/prefect:dev-python${{ matrix.python-version }}-conda conda --version
- name: Install packages
run: |
python -m pip install --upgrade pip
# If using not using lower bounds, upgrade eagerly to get the latest versions despite caching
pip install ${{ ! matrix.lower-bound-requirements && '--upgrade --upgrade-strategy eager' || ''}} -e .[dev]
- name: Run tests
run: |
# Parallelize tests by scope to reduce expensive service fixture duplication
# Do not allow the test suite to build images, as we want the prebuilt images to be tested
# Do not run Kubernetes service tests, we do not have a cluster available
pytest tests -vv --numprocesses auto --dist loadscope --disable-docker-image-builds --exclude-service kubernetes --durations=25 ${{ matrix.pytest-options }}
run-tests-postgres:
name: Test with Postgres
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
pytest-options:
- "--exclude-services"
fail-fast: false
runs-on: ubuntu-latest
# TODO: Consider moving this from a service into a normal docker command
# so we can include it in the sqlite python test matrix instead of
# maintaining a separate workflow
services:
postgres:
image: postgres:13
env:
POSTGRES_USER: prefect
POSTGRES_PASSWORD: prefect
POSTGRES_DB: orion
LANG: 'C.UTF-8'
LANGUAGE: 'C.UTF-8'
LC_ALL: 'C.UTF-8'
LC_COLLATE: 'C.UTF-8'
LC_CTYPE: 'C.UTF-8'
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: "requirements*.txt"
- name: Install packages
run: |
python -m pip install --upgrade pip
pip install --upgrade --upgrade-strategy eager -e .[dev]
- name: Run tests
env:
PREFECT_ORION_DATABASE_CONNECTION_URL: "postgresql+asyncpg://prefect:prefect@localhost/orion"
run: |
pytest tests -vv --numprocesses auto --dist loadscope ${{ matrix.pytest-options }}