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 | 37de8228b91453c4abb6ba826b1f8ba89f86501b (patch) | |
tree | 8ec153cf32088e48978d46b7aae5ab30dbee3f0e | |
parent | 713f8e46b44bb0f72c03fb22e27589d5dab98ad0 (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 |