diff options
author | Victor Chahuneau <vchahune@cs.cmu.edu> | 2012-11-18 16:06:14 -0500 |
---|---|---|
committer | Victor Chahuneau <vchahune@cs.cmu.edu> | 2012-11-18 16:06:14 -0500 |
commit | 61ede617e3eaa15e0005965d1da2e462659b0f7d (patch) | |
tree | 56bf8acf076bd09664e8b73db21ddf9dca0463b2 | |
parent | e9f80543bf7ff4070a1b5cdc1c3f5648addc70ce (diff) |
Switch .travis.yml language to python to get virtualenv
-rw-r--r-- | .travis.yml | 13 |
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 |