summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorChris Dyer <cdyer@allegro.clab.cs.cmu.edu>2012-11-18 17:41:32 -0500
committerChris Dyer <cdyer@allegro.clab.cs.cmu.edu>2012-11-18 17:41:32 -0500
commit4e8985437a7ac81fac2569b5afc13e5b5c7238ba (patch)
tree70c5890befba1842e94d5ccb76b685f7b05a7a51 /.travis.yml
parentc3a0f085f678b0186b977c8e97dbc9175676f9bd (diff)
parent61ede617e3eaa15e0005965d1da2e462659b0f7d (diff)
Merge branch 'master' of github.com:redpony/cdec
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml10
1 files changed, 9 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index cbfd8fb9..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,7 +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
+ - nosetests python/tests