-
Notifications
You must be signed in to change notification settings - Fork 48
129 lines (106 loc) · 3.2 KB
/
run_tests_linux.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
name: Run the tests
on: [pull_request]
env:
PREFIX_LINUX: /usr/share/miniconda3/envs/bioptim
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
shard: [1, 2, 3, 4, 5, 6]
name: Tests on ${{ matrix.os }}-shard ${{ matrix.shard }}
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}
steps:
- name: Set prefix Linux
run: echo "PREFIX=${{ env.PREFIX_LINUX }}" >> $GITHUB_ENV
- name: Checkout code
uses: actions/checkout@v3
- name: Setup environment
uses: conda-incubator/setup-miniconda@v2
with:
miniforge-version: latest
use-mamba: true
activate-environment: bioptim
environment-file: environment.yml
- name: Print mamba info
run: |
conda info
conda list
- name: Install extra dependencies
run: |
conda install pytest-cov black pytest pytest-cov codecov packaging -cconda-forge
sudo apt install -y librhash-dev
- name: Install ACADOS on Linux
run: |
pwd
cd external
./acados_install_linux.sh 4 ${{ env.PREFIX_LINUX }}
cd ..
if: matrix.shard == 1
- name: Test installed version of bioptim
run: |
python setup.py install
cd
python -c "import bioptim"
if: matrix.shard == 1
- name: Run tests with code coverage
run: pytest -v --color=yes --cov-report term-missing --cov=bioptim tests/shard${{ matrix.shard }}
if: matrix.os == 'ubuntu-latest'
- name: Archive coverage report
id: archive
uses: actions/upload-artifact@v4
with:
name: coverage-${{ matrix.shard }}
path: .coverage
if-no-files-found: error
include-hidden-files: true
merge-coverage:
needs: build
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- name: Set prefix Linux
run:
echo "PREFIX=${{ env.PREFIX_LINUX }}" >> $GITHUB_ENV
- name: Checkout code
uses: actions/checkout@v3
- name: Install extra dependencies
run: |
sudo apt install -y python3-pip
pip3 install coverage
- name: Download all workflow run artifacts
id: download
uses: actions/download-artifact@v4
with:
pattern: coverage-*
- name: Show before merging dir content
run: |
pwd
ls -Al
ls coverage-1
ls coverage-2
- name: Rename coverage files
run: |
for shard in {1,2,3,4,5,6}; do
mv coverage-${shard}/.coverage .coverage${shard}
done
- name: Merge coverage reports
run: coverage combine .coverage1 .coverage2 .coverage3 .coverage4 .coverage5 .coverage6
- name: Show after merging dir content
run: pwd; ls -Al
- name: Generate XML report
run: |
coverage xml
coverage report -m
- uses: codecov/codecov-action@v5
with:
files: ./coverage.xml
flags: unittests
fail_ci_if_error: true
verbose: true