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 761602a + 9a6f668 commit e147c08Copy full SHA for e147c08
ci/run-build-and-tests.sh
@@ -53,4 +53,8 @@ then
53
fi
54
check_unignored_build_artifacts
55
56
+case " $MAKE_TARGETS " in
57
+*" all "*) make -C contrib/subtree test;;
58
+esac
59
+
60
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