summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml13
1 files changed, 9 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 9e784717..f3c418b5 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,3 +1,6 @@
+language: python
+python:
+ - "2.7"
before_script:
- sudo apt-get install libboost-program-options-dev
- sudo apt-get install libboost-serialization-dev
@@ -7,10 +10,12 @@ before_script:
- sudo apt-get install flex
- autoreconf -ifv
- ./configure
-script: make
+script:
+ - make
+ - cd python
+ - python setup.py install
+ - cd ..
after_script:
- make check
- ./tests/run-system-tests.pl
- - cd python
- - python setup.py install
- - nosetests tests
+ - nosetests python/tests