-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (46 loc) · 1.24 KB
/
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
name: Tests
env:
CI: "1"
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:15-alpine
env:
POSTGRES_DB: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_PORT: 5432
POSTGRES_USER: postgres
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v2
- name: Python Poetry Action
uses: abatilo/actions-poetry@v2.1.6
with:
poetry-version: 1.3.1
- uses: actions/setup-python@v4
with:
python-version: '3.10.10'
cache: 'poetry'
- name: Install deps
run: |
poetry install
- name: Run Redis
run: |
docker compose up -d redis
- name: Unit Tests
run: poetry run python ./manage.py test
- name: Test w/ Production Dump
run: |
curl -fsSL -o /tmp/production-fixture.json ${{ secrets.PRODUCTION_FIXTURES_URL }}
poetry run ./manage.py testserver /tmp/production-fixture.json --noinput &
npm install
npm run cy:test