We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2fa7f8 commit f5ac4bbCopy full SHA for f5ac4bb
.travis.yml
@@ -0,0 +1,18 @@
1
+language: python
2
+sudo: false
3
+
4
+python:
5
+ - "3.5"
6
+ - "2.7"
7
8
+install:
9
+ # Travis needs to update pip/setuptools
10
+ - pip install --upgrade setuptools pip
11
+ # install test plugins
12
+ - pip install --upgrade pytest pytest-check-links
13
+ - pip install https://github.com/computationalmodelling/nbval/archive/master.zip
14
+ # install requirements
15
+ - pip install -r requirements.txt
16
17
+script:
18
+ - pytest --nbval --check-links .
requirements.txt
@@ -0,0 +1,8 @@
+cython
+ipyparallel
+ipython >= 4
+matplotlib
+notebook
+numpy
+pandas
+sympy
0 commit comments