-
Notifications
You must be signed in to change notification settings - Fork 154
127 lines (120 loc) · 3.65 KB
/
tests.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
name: tests
on:
push:
branches:
- master
- "[0-9]+.[0-9]+.x"
pull_request:
branches:
- master
- "[0-9]+.[0-9]+.x"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- {python: '3.8', tox: 'py38-release'}
- {python: '3.8', tox: 'py38-low'}
- {python: '3.9', tox: 'py39-release'}
- {python: '3.9', tox: 'py39-low'}
- {python: '3.10', tox: 'py310-release'}
- {python: '3.10', tox: 'py310-low'}
- {python: '3.11', tox: 'py311-release'}
- {python: '3.11', tox: 'py311-low'}
- {python: 'pypy-3.9', tox: 'pypy39-release'}
- {python: 'pypy-3.9', tox: 'pypy39-low'}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: update pip
run: |
pip install -U wheel setuptools
python -m pip install -U pip
- name: cache pip
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: pip-${{ runner.os }}-${{ matrix.tox }}-${{ hashFiles('setup.py') }}-${{ hashFiles('tox.ini') }}-${{ hashFiles('requirements/*.txt') }}-${{ hashFiles('requirements_low/*.txt') }}
- name: run tests
run: |
pip install tox
tox -e ${{ matrix.tox }}
other:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: update pip
run: |
pip install -U wheel setuptools
python -m pip install -U pip
- name: Style, docs, mypy
run: |
pip install tox
tox -e style,docs,mypy
- name: nobabel, nowebauthn, noauthlib
run: |
pip install tox
tox -e nobabel,nowebauthn,noauthlib
cov:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: update pip
run: |
pip install -U wheel setuptools
python -m pip install -U pip
- name: Coverage
run: |
pip install tox coverage
tox -e coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: false
verbose: true
realdb:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:latest
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: testpw
POSTGRES_DB: testdb
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: update pip
run: |
pip install -U wheel setuptools
python -m pip install -U pip
- name: cache pip
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: pip-${{ runner.os }}-${{ hashFiles('setup.py') }}-${{ hashFiles('tox.ini') }}-${{ hashFiles('requirements/*.txt') }}
- name: Postgres
run: |
pip install tox
tox -e realpostgres -- --realdburl='postgresql://postgres:testpw@localhost:5432/testdb'