diff options
author | Chris Dyer <cdyer@allegro.clab.cs.cmu.edu> | 2012-11-18 17:41:32 -0500 |
---|---|---|
committer | Chris Dyer <cdyer@allegro.clab.cs.cmu.edu> | 2012-11-18 17:41:32 -0500 |
commit | 4e8985437a7ac81fac2569b5afc13e5b5c7238ba (patch) | |
tree | 70c5890befba1842e94d5ccb76b685f7b05a7a51 /.travis.yml | |
parent | c3a0f085f678b0186b977c8e97dbc9175676f9bd (diff) | |
parent | 61ede617e3eaa15e0005965d1da2e462659b0f7d (diff) |
Merge branch 'master' of github.com:redpony/cdec
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 10 |
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 |