aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorGravatar Tamir Duberstein <tamird@gmail.com>2015-01-13 14:47:32 -0500
committerGravatar Tamir Duberstein <tamird@gmail.com>2015-04-10 19:43:51 -0400
commit9f42f5f4a423b923f7b07ae8c5e8db4943df49c6 (patch)
treefd376cb74cae08e5bc77a8f23a797d8d5f49cc44 /.travis.yml
parentdab96f19ee2cb1dab5a403987329326ee23c2191 (diff)
[PYTHON] Drop dependency on 'google.apputils'.
Use stdlib's 'unittest' instead.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index b8435f77..cbddac58 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,9 +11,9 @@ script:
- ./autogen.sh && ./configure && make -j2
- cd java && mvn test && cd ..
- cd javanano && mvn test && cd ..
- - cd python && python setup.py build && python setup.py google_test && cd ..
+ - cd python && python setup.py build && python setup.py test && cd ..
- export LD_LIBRARY_PATH=../src/.libs
- - cd python && python setup.py build --cpp_implementation && python setup.py google_test --cpp_implementation && cd ..
+ - cd python && python setup.py build --cpp_implementation && python setup.py test --cpp_implementation && cd ..
- make distcheck -j2
notifications:
email: false