From c799157db3d03c5cd1f72c931ec08ffb2d9d581b Mon Sep 17 00:00:00 2001 From: Justin SB Date: Fri, 25 Oct 2019 06:44:13 -0400 Subject: [PATCH] Test everything, not just //test Otherwise we were skipping the hosts unit tests. --- .travis.yml | 2 +- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index e7181a02..c2276691 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,7 +35,7 @@ script: - bazel build //cmd/... # Tests log too much output for travis #- bazel test //test/... --test_output=streamed --local_test_jobs=1 - - bazel test //test/... --test_output=errors --local_test_jobs=1 + - bazel test //... --test_output=errors --local_test_jobs=1 notifications: email: false diff --git a/Makefile b/Makefile index d9f336a7..1f5de66b 100644 --- a/Makefile +++ b/Makefile @@ -4,11 +4,11 @@ all: test .PHONY: test test: - bazel test //test/... --test_output=streamed + bazel test //... --test_output=streamed .PHONY: stress-test stress-test: - bazel test //test/... --test_output=streamed --runs_per_test=10 + bazel test //... --test_output=streamed --runs_per_test=10 .PHONY: gofmt gofmt: