From 6f97d1e980a9694e7f5a9e5e8e9771a6ff4cc488 Mon Sep 17 00:00:00 2001 From: Sick Yoon Date: Wed, 14 Aug 2019 14:13:38 +0900 Subject: [PATCH] remove references to subpackages during test --- .travis.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4ff1d7e..7aee7ee 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,5 +18,5 @@ install: - dep ensure script: - golangci-lint run - - go test -v -cover ./... + - go test -v -cover . - goveralls -service=travis-ci diff --git a/Makefile b/Makefile index 3b765e3..026ee84 100644 --- a/Makefile +++ b/Makefile @@ -12,5 +12,5 @@ lint: build-lint .PHONY: test test: - go test -timeout 30s -v -cover ./... + go test -timeout 30s -v -cover .