forked from RWTH-EBC/TEASER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
46 lines (41 loc) · 1.33 KB
/
.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
42
43
44
45
46
test3.6-subset:
image: python:3.6
stage: test
script:
- pip install --upgrade pip setuptools wheel
- pip install --only-binary=numpy,scipy numpy scipy
- pip install pyxb
- pip install pytest
- pip install PyGithub==1.39
- pip install flake8==3.4.1
- pip install -e .
- flake8 --count --ignore W503,F401 --exclude teaser/data/bindings,doc,tests,.eggs --max-line-length=120
- py.test --ignore=tests/test_modelicaversion.py
test3.6-full:
image: python:3.6
stage: test
only:
- master
script:
- pip install --upgrade pip setuptools wheel
- pip install --only-binary=numpy,scipy numpy scipy
- pip install pyxb
- pip install pytest
- pip install PyGithub==1.39
- pip install flake8==3.4.1
- pip install -e .
- flake8 --count --ignore W503,F401 --exclude teaser/data/bindings,doc,tests,.eggs --max-line-length=120
- py.test
test3.7:
image: python:3.7
stage: test
script:
- pip install --upgrade pip setuptools wheel
- pip install --only-binary=numpy,scipy numpy scipy
- pip install pyxb
- pip install pytest
- pip install PyGithub==1.39
- pip install flake8==3.4.1
- pip install -e .
- flake8 --count --ignore W503,F401 --exclude teaser/data/bindings,doc,tests,.eggs --max-line-length=120
- py.test --ignore=tests/test_modelicaversion.py