We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 573dbac + d4cc077 commit 110098dCopy full SHA for 110098d
ci/run-build-and-tests.sh
@@ -52,4 +52,8 @@ then
52
fi
53
check_unignored_build_artifacts
54
55
+case " $MAKE_TARGETS " in
56
+*" all "*) make -C contrib/subtree test;;
57
+esac
58
+
59
save_good_tree
ci/run-test-slice.sh
@@ -15,4 +15,7 @@ group "Run tests" make --quiet -C t T="$(cd t &&
15
tr '\n' ' ')" ||
16
handle_failed_tests
17
18
+# Run the git subtree tests only if main tests succeeded
19
+test 0 != "$1" || make -C contrib/subtree test
20
21
contrib/subtree/Makefile
@@ -94,7 +94,7 @@ $(GIT_SUBTREE_TEST): $(GIT_SUBTREE)
94
cp $< $@
95
96
test: $(GIT_SUBTREE_TEST)
97
- $(MAKE) -C t/ test
+ $(MAKE) -C t/ all
98
99
clean:
100
$(RM) $(GIT_SUBTREE)
0 commit comments