-
Notifications
You must be signed in to change notification settings - Fork 2
72 lines (64 loc) · 1.79 KB
/
test.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
name: Test
on:
push:
branches:
- master
- develop
pull_request:
jobs:
# lint:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-python@v2
#
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip pre-commit
# - name:
# run: pre-commit run --all-files
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:12
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: aurora
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
strategy:
fail-fast: false
matrix:
django-version: [ "3.2", ]
python-version: [ "3.9", ]
experimental: [ false ]
include:
- django-version: "4.2"
python-version: "3.9"
experimental: true
continue-on-error: ${{ matrix.experimental }}
env:
DATABASE_URL: postgres://postgres:[email protected]:5432/aurora
STATIC_URL: /static/
STATIC_ROOT:
PY_VER: ${{ matrix.python-version}}
DJ_VER: ${{ matrix.django-version}}
SECRET_KEY: super-secret-key
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: python -m pip install --upgrade poetry
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest tests/ --create-db
- uses: codecov/codecov-action@v1
with:
verbose: false # optional (default = false)