forked from conestack/cone.app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
35 lines (31 loc) · 864 Bytes
/
.travis.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
language: python
sudo: false
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install:
- pip install coverage
- pip install coveralls
- pip install pyramid==1.9.4
- |
if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then
pip install repoze.zcml==0.4
pip install repoze.workflow==0.6.1
else
pip install repoze.zcml==1.1
pip install repoze.workflow==1.1
fi
- pip install https://github.com/bluedynamics/node.ext.ugm/archive/master.zip
- pip install https://github.com/bluedynamics/yafowil/archive/master.zip
- pip install https://github.com/bluedynamics/cone.tile/archive/master.zip
- pip install -e .[test]
script:
- export TESTRUN_MARKER=True
- python -m cone.app.tests.__init__
- coverage run --source src/cone/app -m cone.app.tests.__init__
- coverage report
after_success:
- coveralls