-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (63 loc) · 2.2 KB
/
python_package.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Pytest
on:
[push, pull_request]
env:
SETUP_XVFB: True # avoid issues if mpl tries to open a GUI window
jobs:
build:
runs-on: ubuntu-latest
# the whole CI pipeline will be skipped if [ci skip] is in the commit msg
if: "!contains(github.event.head_commit.message, '[ci skip]')"
timeout-minutes: 60
strategy:
matrix:
python-version: ["3.9"]
# mpi: ['openmpi']
# mpi: [ 'mpich', 'openmpi', 'intelmpi']
# env:
# OMP_NUM_THREADS: 1
# MKL_NUM_THREADS: 1
# OPENBLAS_NUM_THREADS: 1
# NUMEXPR_NUM_THREADS: 1
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
# - name: Setup MPI
# uses: mpi4py/setup-mpi@v1
# with:
# mpi: ${{ matrix.mpi }}
- name: Install dependencies
run: |
sudo apt-get -y install libbz2-dev
python -m pip install --upgrade pip
pip install wheel flake8 pytest pytest-cov coveralls
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
# # TODO: the section below can be removed if the compile step is fixed otherwise
- name: Reinstall fitsio to ensure the numpy version during compilation matches the one at runtime
run: |
pip uninstall fitsio -y
pip cache purge
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install lya_2pt
run: pip install -e .
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=100 --statistics
- name: Test with pytest and gen report
timeout-minutes: 30
run: |
export NUMBA_DISABLE_JIT=1
pytest --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
env_vars: OS,PYTHON
fail_ci_if_error: true
flags: unittests
verbose: true