Fix swapped install/test sections for fuse.
authorTom Clegg <tom@curoverse.com>
Mon, 18 Aug 2014 18:37:45 +0000 (14:37 -0400)
committerTom Clegg <tom@curoverse.com>
Mon, 18 Aug 2014 18:37:45 +0000 (14:37 -0400)
jenkins/run-tests.sh

index 0d89dcff7b75f1883db3cc67f453df86b0454c18..9f0b5e691ed06ad601cb0cb4a5d9ce60876ca2b6 100755 (executable)
@@ -219,12 +219,12 @@ install_python_sdk() {
 }
 do_install python_sdk
 
-test_fuse() {
+install_fuse() {
     cd "$WORKSPACE/services/fuse" \
         && python setup.py egg_info -b ".$(git log --format=format:%ct.%h -n1 .)" sdist rotate --keep=1 --match .tar.gz \
         && pip install dist/arvados_fuse-0.1.*.tar.gz
 }
-do_test fuse
+do_install fuse
 
 test_python_sdk() {
     # Python SDK. We test this before testing keepproxy: keepproxy runs
@@ -239,13 +239,13 @@ test_python_sdk() {
 }
 do_test python_sdk
 
-install_fuse() {
+test_fuse() {
     # Install test dependencies here too, in case run_test_server needs them.
     cd "$WORKSPACE/services/fuse" \
         && python setup.py test \
         && easy_install *.egg
 }
-do_install fuse
+do_test fuse
 
 for g in "${gostuff[@]}"
 do