mirror of
https://github.com/mnauw/git-remote-hg.git
synced 2026-02-27 23:10:41 +01:00
Reorganize tests
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
This commit is contained in:
3
test/.gitignore
vendored
Normal file
3
test/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
test-results/
|
||||
trash directory.*/
|
||||
.prove
|
||||
@@ -1,6 +1,6 @@
|
||||
RM ?= rm -f
|
||||
|
||||
T = $(wildcard ../test-*.sh)
|
||||
T = $(wildcard *.t)
|
||||
TEST_DIRECTORY := $(CURDIR)
|
||||
|
||||
export TEST_DIRECTORY
|
||||
|
||||
@@ -16,7 +16,7 @@ then
|
||||
test_done
|
||||
fi
|
||||
|
||||
if ! python -c 'import mercurial'
|
||||
if ! python -c 'import mercurial' > /dev/null 2>&1
|
||||
then
|
||||
skip_all='skipping remote-hg tests; mercurial not available'
|
||||
test_done
|
||||
@@ -22,7 +22,7 @@ then
|
||||
test_done
|
||||
fi
|
||||
|
||||
if ! python -c 'import hggit'
|
||||
if ! python -c 'import hggit' > /dev/null 2>&1
|
||||
then
|
||||
skip_all='skipping remote-hg tests; hg-git not available'
|
||||
test_done
|
||||
@@ -17,7 +17,7 @@ then
|
||||
test_done
|
||||
fi
|
||||
|
||||
if ! python -c 'import mercurial'
|
||||
if ! python -c 'import mercurial' > /dev/null 2>&1
|
||||
then
|
||||
skip_all='skipping remote-hg tests; mercurial not available'
|
||||
test_done
|
||||
Reference in New Issue
Block a user