forked from llnl/thicket
-
Notifications
You must be signed in to change notification settings - Fork 0
70 lines (60 loc) · 1.89 KB
/
Copy pathcoverage.yaml
File metadata and controls
70 lines (60 loc) · 1.89 KB
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
67
68
69
70
name: unit tests to collect code coverage
on:
push:
branches: [ develop ]
secrets:
THICKET_CODECOV_TOKEN:
required: true
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
exclude:
- os: macos-latest
python-version: [3.5, 3.6]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Python Dependencies for 3.12 and later
if: ${{ matrix.python-version >= '3.12' }}
run: |
python -m pip install --upgrade pip pytest setuptools wheel
pip install -r requirements.txt
# Optional Dependency for HDF Checkpointing
pip install tables
python setup.py install
python setup.py build_ext --inplace
python -m pip list
- name: Standard Install Python3 Dependencies
run: |
python -m pip install --upgrade pip pytest
pip install -r requirements.txt
# Optional Dependency for HDF Checkpointing
pip install tables
python setup.py install
python setup.py build_ext --inplace
python -m pip list
- name: Install coverage tools
run: |
pip install codecov
pip install pytest-cov
- name: Basic Test with pytest
run: |
PYTHONPATH=. $(which pytest) --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.THICKET_CODECOV_TOKEN }}
with:
directory: ./coverage/reports
env_vars: OS,PYTHON
files: /home/runner/work/hatchet/hatchet/coverage.xml
flags: unittests
verbose: true
fail_ci_if_error: true