diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..39db8c7 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,18 @@ +language: python +sudo: false + +python: + - "3.5" + - "2.7" + +install: + # Travis needs to update pip/setuptools + - pip install --upgrade setuptools pip + # install test plugins + - pip install --upgrade pytest pytest-check-links + - pip install https://github.com/computationalmodelling/nbval/archive/master.zip + # install requirements + - pip install -r requirements.txt + +script: + - pytest --nbval --check-links . diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..014575e --- /dev/null +++ b/requirements.txt @@ -0,0 +1,8 @@ +cython +ipyparallel +ipython >= 4 +matplotlib +notebook +numpy +pandas +sympy