-
Notifications
You must be signed in to change notification settings - Fork 2
55 lines (46 loc) · 1.72 KB
/
run-pytest.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
name: Run pytests
on:
push:
branches: [master, dev]
pull_request:
branches: [master, dev]
workflow_dispatch:
inputs: null
jobs:
pytest:
strategy:
matrix:
python-version: ["3.8", "3.11"]
os: [ubuntu-latest] # can't use macOS when using service containers or container jobs
runs-on: ${{ matrix.os }}
services:
postgres:
image: postgres
env: # needs to match DB config in: ../../tests/data/config.yaml
POSTGRES_USER: postgres
POSTGRES_PASSWORD: pipestat-password
POSTGRES_DB: pipestat-test
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
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 dev dependencies
run: if [ -f requirements/requirements-dev.txt ]; then pip install -r requirements/requirements-dev.txt; fi
- name: Install test dependencies
run: if [ -f requirements/requirements-test.txt ]; then pip install -r requirements/requirements-test.txt; fi
- name: Install backend dependencies
run: if [ -f requirements/requirements-db-backend.txt ]; then pip install -r requirements/requirements-db-backend.txt; fi
- name: Install pipestat
run: python -m pip install .
- name: Run pytest tests
run: pytest tests -x -vv --cov=./ --cov-report=xml
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v1
# with:
# file: ./coverage.xml
# name: py-${{ matrix.python-version }}-${{ matrix.os }}