Skip to content

Commit 3bbe032

Browse files
committed
Add support for Travis CI
1 parent 2e0f0d0 commit 3bbe032

2 files changed

Lines changed: 17 additions & 0 deletions

File tree

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: python
2+
python:
3+
- "2.6"
4+
- "2.7"
5+
- "3.2"
6+
- "3.3"
7+
# install required system libraries
8+
before_install:
9+
- sudo apt-get update --fix-missing
10+
- sudo apt-get build-dep python-scipy
11+
# command to install dependencies from source
12+
install: "pip install -r requirements.txt"
13+
# command to run tests
14+
script: python runtests.py

requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
numpy
2+
scipy
3+
slycot

0 commit comments

Comments
 (0)