Skip to content

Commit e015212

Browse files
MHBauerpmorie
authored andcommitted
run each integration test individually (openshift#1661)
1 parent 412e242 commit e015212

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: test/integration.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ runTests() {
3030
fi
3131

3232
go test -race $FLAGS github.com/kubernetes-incubator/service-catalog/test/integration/... -c \
33-
&& ./integration.test -test.v $@
33+
&& for test in $(./integration.test -test.list .); do
34+
./integration.test -test.v -test.run $test $@
35+
done
3436
}
3537

3638
runTests $@

0 commit comments

Comments
 (0)