-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (61 loc) · 1.76 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
name: Run Python E2E tests
on:
push:
branches: [ main ]
paths-ignore:
- '**.md'
- 'lab/**'
- 'assets/**'
pull_request:
branches: [ main ]
paths-ignore:
- '**.md'
- 'lab/**'
- 'assets/**'
jobs:
test_package:
name: Test ${{ matrix.os }} Python ${{ matrix.python_version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-20.04"]
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
services:
db:
image: mysql:8.2
env:
MYSQL_ROOT_PASSWORD: mysql
MYSQL_DATABASE: relecloud
ports:
- 3306:3306
# needed because the mysql container does not provide a healthcheck
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python_version }}
architecture: x64
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements-dev.txt
playwright install chromium --with-deps
- name: Seed data
run: |
python3 src/manage.py migrate
python3 src/manage.py loaddata src/seed_data.json
env:
MYSQL_HOST: 127.0.0.1
MYSQL_USER: root
MYSQL_PASS: mysql
MYSQL_DATABASE: relecloud
- name: Run tests
run: python3 -m pytest
env:
MYSQL_HOST: 127.0.0.1
MYSQL_USER: root
MYSQL_PASS: mysql
MYSQL_DATABASE: relecloud