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 07f89e1 commit 7c45504Copy full SHA for 7c45504
.travis.yml
@@ -1,14 +1,8 @@
1
language: python
2
python:
3
- - "2.7"
4
-before_install:
5
- - deactivate
6
- - sudo apt-get update -qq
7
- - sudo apt-get install -qq python-scipy python-nose
8
- - virtualenv --system-site-packages ~/virtualenv/this
9
- - source ~/virtualenv/this/bin/activate
10
-install:
11
- - python setup.py build_ext --inplace
12
- - python setup.py install
13
-script:
14
- - python setup.py test
+ - "2.7"
+ - "nightly"
+# command to install dependencies
+install: "pip install -r requirements.txt"
+# command to run tests
+script: nosetests
0 commit comments