From: Jonathan Nieder Date: Mon, 12 Apr 2010 14:24:28 +0000 (-0500) Subject: t5800: testgit helper requires Python support X-Git-Tag: v1.7.2-rc0~128^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=63a2f6139c33b7231baad8e3bfcc218ef6b63418;p=git.git t5800: testgit helper requires Python support git remote-testgit is written in Python. In a NO_PYTHON build, tests using it would fail, so skip them. Signed-off-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- diff --git a/t/t5800-remote-helpers.sh b/t/t5800-remote-helpers.sh index eb31709b9..75a0163c0 100755 --- a/t/t5800-remote-helpers.sh +++ b/t/t5800-remote-helpers.sh @@ -7,6 +7,12 @@ test_description='Test remote-helper import and export commands' . ./test-lib.sh +if ! test_have_prereq PYTHON +then + say 'skipping git remote-testgit tests: requires Python support' + test_done +fi + test_expect_success 'setup repository' ' git init --bare server/.git && git clone server public &&