-
Notifications
You must be signed in to change notification settings - Fork 4
/
.gitlab-ci.yml
41 lines (37 loc) · 986 Bytes
/
.gitlab-ci.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
include:
- project: cells/ci
file: /ci/lib/common.yml
feature-extraction-docker:
before_script:
- !reference [.docker, load-python-39]
script:
- pip install -r requirements.txt
- pip install -r test-requirements.txt
- cd feature_extraction
- pytest -sx tests
optimization-docker:
before_script:
- !reference [.docker, load-python-39]
script:
- pip install -r requirements.txt
- pip install -r test-requirements.txt
- cd optimization
- nrnivmodl opt_module/mechanisms
- pytest -sx tests
model-management-docker:
before_script:
- !reference [.docker, load-python-39]
script:
- pip install -r requirements.txt
- pip install -r test-requirements.txt
- cd model_management/mm_run_minimal
- pytest -sx tests
validation-docker:
before_script:
- !reference [.docker, load-python-39]
script:
- pip install -r requirements.txt
- pip install -r test-requirements.txt
- cd validation
- nrnivmodl mechanisms
- pytest -sx tests