Makefile: add PYTHON_PATH to GIT-BUILD-OPTIONS
[gitweb.git] / t / t5800-remote-helpers.sh
index eb31709b979011142f04079583e8340474cb8695..22c7df47fb2dccd8c3468b6c136fe3eb268e50d3 100755 (executable)
@@ -7,6 +7,18 @@ test_description='Test remote-helper import and export commands'
 
 . ./test-lib.sh
 
+if test_have_prereq PYTHON && "$PYTHON_PATH" -c '
+import sys
+if sys.hexversion < 0x02050000:
+    sys.exit(1)
+'
+then
+       :
+else
+       say 'skipping git remote-testgit tests: requires Python 2.5 or newer'
+       test_done
+fi
+
 test_expect_success 'setup repository' '
        git init --bare server/.git &&
        git clone server public &&