Skip to content

Commit

Permalink
run tests 20x, use kindest verbose image
Browse files Browse the repository at this point in the history
  • Loading branch information
sbueringer committed Apr 1, 2021
1 parent 054f54a commit f0e7a5a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions scripts/ci-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -103,5 +103,10 @@ ctr -n moby events > "${ARTIFACTS_LOCAL}/containerd-events.txt" 2>&1 &

# Run e2e tests
mkdir -p "$ARTIFACTS"
echo "+ run tests!"
make -C test/e2e/ run

# run the tests more often, so do they don't have to be re-triggered every hour
for i in {1..20};
do
echo "+ run tests! ${i}"
make -C test/e2e/ run
done
4 changes: 2 additions & 2 deletions test/infrastructure/docker/docker/machine.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ import (
)

const (
defaultImageName = "kindest/node"
defaultImageTag = "v1.19.1"
defaultImageName = "sbueringer/kindest-node"
defaultImageTag = "v1.19.1-verbose"
)

type nodeCreator interface {
Expand Down

0 comments on commit f0e7a5a

Please sign in to comment.