Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
language: go
sudo: required
services:
- docker
matrix:
include:
- go: 1.10.3
script:
- make test
- make
after_success:
- if [ "${TRAVIS_BRANCH}" == "master" ] && [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
make container
docker login -u "${DOCKER_USERNAME}" -p "${DOCKER_PASSWORD}" quay.io;
make push;
fi
2 changes: 1 addition & 1 deletion utils/safegoroutinetester.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ type SafeGoroutineTester struct{}

// Errorf prints the error to the screen then panics
func (s *SafeGoroutineTester) Errorf(format string, args ...interface{}) {
fmt.Printf(format, args)
fmt.Printf(format, args...)
panic("MOCK TEST ERROR")
}

Expand Down