-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
35 lines (31 loc) · 894 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/conestack/node.ext.ugm/archive/master.zip
- pip install https://github.com/conestack/yafowil/archive/master.zip
- pip install https://github.com/conestack/cone.tile/archive/master.zip
- pip install https://github.com/conestack/cone.app/archive/master.zip
- pip install -e .[test]
script:
- python -m cone.calendar.tests
- coverage run --source src/cone/calendar -m cone.calendar.tests
- coverage report
after_success:
- coveralls