Skip to content

Commit 5342649

Browse files
committed
Add travis.yml
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
1 parent b3d729c commit 5342649

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.travis.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
language: python
2+
3+
python:
4+
- "2.6"
5+
- "2.7"
6+
- "3.3"
7+
- "3.4"
8+
9+
install:
10+
- pip install setuptools
11+
# core dependencies
12+
- pip install pygments requests
13+
# curtsies specific dependencies
14+
- pip install 'curtsies<0.2.0' greenlet
15+
# translation specific dependencies
16+
- pip install babel
17+
# documentation specific dependencies
18+
- pip install sphinx
19+
- if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then pip install unittest2; fi
20+
- python setup.py install
21+
22+
script:
23+
- cd build/lib/
24+
- "nosetests bpython/test"

0 commit comments

Comments
 (0)