forked from hatchet/hatchet
-
Notifications
You must be signed in to change notification settings - Fork 0
87 lines (76 loc) · 2.27 KB
/
unit-tests.yaml
File metadata and controls
87 lines (76 loc) · 2.27 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: unit tests
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop, releases/** ]
jobs:
ubuntu:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Python3 packages
run: |
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: Lint and format check with flake8 and black
if: ${{ matrix.python-version == 3.9 }}
run: |
pip install --upgrade click
pip install --upgrade black
pip install --upgrade flake8
black -t py39 --diff --check .
flake8
- name: Update coverage
if: ${{ matrix.python-version == 3.12 }}
run: |
pip install --upgrade coverage
- name: Clone Caliper
uses: actions/checkout@v2
with:
repository: LLNL/Caliper
path: Caliper
token: ${{ secrets.GITHUB_TOKEN }}
- name: Build Caliper
working-directory: Caliper
run: |
mkdir build && mkdir install
cd build
cmake -DCMAKE_INSTALL_PREFIX=../install ../
make VERBOSE=1
make install
export PATH=$(pwd)/../install/bin:${PATH}
cd $GITHUB_WORKSPACE
which cali-query
- name: Basic test with pytest
if: ${{ matrix.python-version != 3.9 }}
run: |
PYTHONPATH=. $(which pytest)
- name: Basic test with pytest
if: ${{ matrix.python-version == 3.12 }}
run: |
PYTHONPATH=. coverage run $(which pytest)
- name: Upload coverage to Codecov
if: ${{ matrix.python-version == 3.12 }}
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.HATCHET_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