-
Notifications
You must be signed in to change notification settings - Fork 26
161 lines (127 loc) · 3.44 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
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
name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "0 0 * * 0"
concurrency:
group: tests-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
env:
ENV: dev
steps:
- uses: actions/checkout@v3
with:
# This is needed for gitlint to work
fetch-depth: 0
- name: Install poetry
run: pipx install poetry
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: "3.8"
cache: "poetry"
- name: Set UID
run: echo "UID=$(id --user)" > .env
- name: Install dependencies
run: poetry install
- name: Run gitlint
run: poetry run gitlint --contrib contrib-title-conventional-commits
- name: Run black
run: poetry run black --check .
- name: Run flake8
run: poetry run flake8 --exclude .venv
- name: Run migration check
run: poetry run python manage.py makemigrations --check --dry-run --no-input
- name: Run reuse
run: poetry run reuse lint
docker-tests:
name: Docker tests
needs: [lint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build the project
run: |
echo "UID=$(id --user)" > .env
docker compose up -d --build
- name: Run tests
run: docker compose exec -T caluma poetry run pytest --no-cov-on-fail --cov --create-db -vv
package-tests:
name: Package tests
needs: [lint]
runs-on: ubuntu-latest
env:
ENV: dev
services:
postgres:
image: postgres:14-alpine
env:
POSTGRES_USER: caluma
POSTGRES_PASSWORD: caluma
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: "3.8"
cache: "poetry"
- name: Set UID
run: echo "UID=$(id --user)" > .env
- name: Install dependencies
run: poetry install
- name: Build and install package
run: |
poetry build
pip install dist/caluma-*.whl
- name: Run tests
run: poetry run pytest --no-cov-on-fail --cov --create-db -vv
compatibility-tests-postgres-10:
name: "Compatibility tests"
uses: ./.github/workflows/compatibility-tests.yml
needs: [lint]
with:
postgres: "10"
compatibility-tests-postgres-11:
name: "Compatibility tests"
uses: ./.github/workflows/compatibility-tests.yml
needs: [lint]
with:
postgres: "11"
compatibility-tests-postgres-12:
name: "Compatibility tests"
uses: ./.github/workflows/compatibility-tests.yml
needs: [lint]
with:
postgres: "12"
compatibility-tests-postgres-13:
name: "Compatibility tests"
uses: ./.github/workflows/compatibility-tests.yml
needs: [lint]
with:
postgres: "13"
compatibility-tests-postgres-14:
name: "Compatibility tests"
uses: ./.github/workflows/compatibility-tests.yml
needs: [lint]
with:
postgres: "14"