-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (60 loc) · 1.74 KB
/
run-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: Mobility Profile API tests
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
jobs:
build:
# Ubuntu latest is Ubuntu 20.04 as of 2022/6
runs-on: ubuntu-20.04
env:
# Database for tests
DATABASE_URL: postgis://postgres:postgres@localhost/smbackend
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10.0
uses: actions/setup-python@v2
with:
python-version: 3.10.0
- name: Install required Ubuntu packages
run: |
sudo apt-get install gdal-bin
# - name: Create needed postgis extensions
# run: |
# psql -h localhost -U postgres template1 -c 'create extension postgis;'
- name: Install PyPI dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Python side code neatness tests
run: |
flake8
black --check .
isort . -c
- name: Run pytest code functionality tests
run: |
pytest --cov=.
- name: Generate Report
run: |
pip install coverage
coverage report -m
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v2
# Majority of the tests require database
services:
# Label used to access the service container
postgres:
# Docker Hub image
image: postgis/postgis:13-3.1
# Provide the password for postgres
env:
POSTGRES_HOST_AUTH_METHOD: trust
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432