-
Notifications
You must be signed in to change notification settings - Fork 1
69 lines (56 loc) · 1.88 KB
/
test.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
name: Run Test
on:
pull_request:
paths:
- waffledotcom/**
- .github/workflows/test.yaml
jobs:
pytest:
runs-on: ubuntu-latest
services:
mysql:
image: mysql:5.7
env:
MYSQL_USER: test-user
MYSQL_PASSWORD: password
MYSQL_ROOT_PASSWORD: root-password
MYSQL_DATABASE: testdb
ports:
- 3307:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
env:
env: test
steps:
- uses: actions/checkout@v3
- name: change mysql charset
run: mysql -h 127.0.0.1 -P 3307 -u root -p'root-password' -e "ALTER DATABASE testdb CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci"
- name: Install poetry
run: |
pipx install poetry
poetry config virtualenvs.in-project true --local
- uses: actions/setup-python@v4
with:
python-version: 3.11
cache: poetry
- name: Install dependencies
run: poetry install --no-root
- name: Run tests
run: |
cd ${GITHUB_WORKSPACE}/waffledotcom/
poetry run pytest --junit-xml=${GITHUB_WORKSPACE}/waffledotcom/test.xml ./
- name: Test reports
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: backend tests
path: "./waffledotcom/test.xml"
reporter: java-junit
- name: Run pre-commit
run: |
git fetch origin ${{ github.base_ref }}
poetry run pre-commit run --from-ref origin/${{ github.base_ref }} --to-ref HEAD
- name: Run alembic migration test
run: |
mkdir -p waffledotcom/src/database/migrations/versions
ls waffledotcom/src/database/migrations/versions/* || poetry run alembic revision --autogenerate
poetry run alembic upgrade head