-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (39 loc) · 1.11 KB
/
python-app.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
name: EpiOut
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install cURL Headers
run: sudo apt-get install libcurl4-openssl-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest cython pytest-cov pytest-xdist
python -m pip install -e ".[all]"
- name: Test with pytest
run: |
python -m pytest -n auto tests/ --junitxml=junit/test-results.xml --cov=epiout --cov-report=xml
- uses: actions/upload-artifact@v2
with:
name: test-coverage
path: coverage.xml
upload-to-codecov:
needs: [build]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Download artifacts
uses: actions/download-artifact@v2
- name: Upload to Codecov
uses: codecov/codecov-action@v1