-
Notifications
You must be signed in to change notification settings - Fork 12
60 lines (55 loc) · 1.39 KB
/
coverage.yaml
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
name: Code Coverage
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
workflow_dispatch:
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout caustics
uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Record State
run: |
pwd
echo github.ref is: ${{ github.ref }}
echo GITHUB_SHA is: $GITHUB_SHA
echo github.event_name is: ${{ github.event_name }}
echo github workspace: ${{ github.workspace }}
pip --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov torch wheel
# Install deps
cd $GITHUB_WORKSPACE
pip install -r requirements.txt
shell: bash
- name: Install Caustics
run: |
cd $GITHUB_WORKSPACE
pip install -e .[dev]
pip show caustics
shell: bash
- name: Test with pytest
run: |
cd $GITHUB_WORKSPACE
pwd
pytest --cov-report=xml --cov=caustics test/
cat coverage.xml
shell: bash
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v3
with:
files: ${{ github.workspace }}/coverage.xml
fail_ci_if_error: false