Skip to content

Commit

Permalink
Try go test -failfast (ddev#3908) [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
rfay authored Jun 16, 2022
1 parent 6ec02d5 commit 2329949
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .buildkite/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ if command -v brew >/dev/null; then
fi

echo "--- Running tests..."
make test
make test TESTARGS="-failfast"
RV=$?
echo "test.sh completed with status=$RV"
ddev poweroff || true
Expand Down
6 changes: 3 additions & 3 deletions .buildkite/testbot_maintenance.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ linux)

esac

(yes | ddev delete images) || true
(yes | ddev delete images >/dev/null) || true

# Remove any -built images, as we want to make sure tests do the building.
docker rmi -f $(docker images --filter "dangling=true" -q --no-trunc) >/dev/null || true
docker rmi -f $(docker images | awk '/drud.*-built/ {print $3}' ) >/dev/null || true
docker rmi -f $(docker images --filter "dangling=true" -q --no-trunc) >/dev/null 2>&1 || true
docker rmi -f $(docker images | awk '/drud.*-built/ {print $3}' ) >/dev/null 2>&1 || true

# Make sure there aren't any dangling NFS volumes
if docker volume ls | grep '[Tt]est.*_nfsmount'; then
Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ WINNFSD_VERSION=2.4.0
NSSM_VERSION=2.24-101-g897c7ad
MKCERT_VERSION=v1.4.6

GOTESTSUM_FORMAT ?= short-verbose
TESTTMP=/tmp/testresults

# This repo's root import path (under GOPATH).
Expand Down

0 comments on commit 2329949

Please sign in to comment.