We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3d729c commit 5342649Copy full SHA for 5342649
.travis.yml
@@ -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