forked from TurboGears/tg2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
28 lines (23 loc) · 922 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
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
install:
- "pip install git+git://github.com/TurboGears/crank.git"
- "pip install git+git://github.com/TurboGears/backlash.git"
- "pip install repoze.who"
- "pip install coverage"
- "pip install nose"
- "pip install --no-use-wheel -e .[testing]"
- "pip install --upgrade git+http://git.code.sf.net/p/merciless/code"
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install git+git://github.com/TurboGears/tgext.chameleon_genshi.git; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install git+git://github.com/TurboGears/tgext.chameleon_genshi.git; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install coveralls && export HAS_COVERALLS=1; fi
script: "nosetests -v --with-coverage --cover-package=tg --cover-erase"
after_success:
- if [[ $HAS_COVERALLS ]]; then coveralls; fi