forked from PrefectHQ/prefect
-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (44 loc) · 1.27 KB
/
windows-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
name: Windows tests
on:
workflow_dispatch: {}
schedule:
- cron: '0 16 * * *' # every day at 4 p.m. UTC / 9 a.m. PDT
permissions: {}
jobs:
run-tests-sqlite:
name: Test with SQLite
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
fail-fast: true
permissions:
contents: read
runs-on: windows-latest
timeout-minutes: 45
env:
# enable colored output
# https://github.com/pytest-dev/pytest/issues/7443
PY_COLORS: 1
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
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
run: |
# Parallelize tests by scope to reduce expensive service fixture duplication
pytest tests -vv --numprocesses auto --dist worksteal --exclude-services --durations=25