-
Notifications
You must be signed in to change notification settings - Fork 83
40 lines (40 loc) · 1.1 KB
/
ci.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
name: CI
on:
release:
types: [published]
pull_request:
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
env:
LANG: C.UTF-8
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
architecture: "x64"
- name: Install pip requirements
run: |
pip install pipenv
pip install pytest-cov
pipenv install --dev --system
- name: Collect static
run: python example_project/manage.py collectstatic --noinput
- name: Run Python tests
run: pytest -x --cov=. --cov-report=xml -vv -n auto
env:
SELENIUM_WEBDRIVER: chrome-headless
SELENIUM_HEADLESS: True
- name: Upload coverage to Codecov
if: github.repository_owner_id == env.OCADO_TECH_ORG_ID
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
file: ${{ env.COVERAGE_REPORT }}