Skip to content

Commit

Permalink
feat: CircleCI configuration for test execution
Browse files Browse the repository at this point in the history
After several attempts to find out the version lets consider it a best-practice to provide the info information
  • Loading branch information
MatthiasScholz authored Dec 8, 2019
1 parent 7e9e04f commit 7269fa6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ endef

# Define: Generic test execution
define run_test
@go version
go clean -testcache
go test -v -timeout $(TIMEOUT) -p 1 -run $@ | tee $(TEST_OUTPUT)
$(out_parsing)
Expand All @@ -45,6 +46,7 @@ endef
all: setup test_all

setup: install_terratest_log_parser
@go version
dep ensure -vendor-only -v

os:
Expand All @@ -63,6 +65,7 @@ cleanup:

# ALL: Execute all tests
test_all: cleanup
@go version
go clean -testcache
go test -v -timeout $(TIMEOUT) -p 1 | tee $(TEST_OUTPUT)
$(out_parsing)
Expand Down

0 comments on commit 7269fa6

Please sign in to comment.