File tree Expand file tree Collapse file tree 1 file changed +3
-14
lines changed Expand file tree Collapse file tree 1 file changed +3
-14
lines changed Original file line number Diff line number Diff line change 10
10
build :
11
11
12
12
runs-on : ubuntu-latest
13
- # if: github.ref == 'refs/heads/main'
14
13
continue-on-error : false
15
14
strategy :
16
15
fail-fast : false
17
- # matrix:
18
- # os: [ubuntu-latest, macos-latest, windows-latest]
19
- # python-version: ["3.8", "3.9", "3.10", "3.11"]
20
- # exclude:
21
- # - os: macos-latest
22
- # python-version: "3.7"
23
- # - os: windows-latest
24
- # python-version: "3.7"
25
16
steps :
26
17
- uses : actions/checkout@v3
27
18
- name : Set up Python
@@ -39,24 +30,22 @@ jobs:
39
30
- name : Install R dependencies
40
31
uses : r-lib/actions/setup-r-dependencies@v2
41
32
with :
42
- packages : any::sessioninfo
43
- extra-packages : |
33
+ packages : |
44
34
any::plyr
45
35
any::dplyr
46
36
any::tidyverse
47
37
any::data.table
48
38
any::ggplot2
49
- # needs: check
50
39
- name : Generate fitting data
51
40
run : |
52
41
pip install pytest
53
- python -m pytest -m slow --saveFileName test_output.csv --SNR 10 --fitCount 10 --saveDurationFileName test_duration.csv
42
+ python -m pytest -m slow --saveFileName test_output.csv --SNR 10 30 50 100 200 --fitCount 1000 --saveDurationFileName test_duration.csv
54
43
- name : Generate figures
55
44
run : Rscript --vanilla tests/IVIMmodels/unit_tests/analyze.r test_output.csv test_duration.csv
56
45
- name : Upload figures
57
46
uses : actions/upload-artifact@v3
58
47
with :
59
- name : code-coverage-report
48
+ name : Fit figures
60
49
path : |
61
50
D.pdf
62
51
f.pdf
You can’t perform that action at this time.
0 commit comments