diff --git a/.drone.yml b/.drone.yml index 58a2ef76a..1cee7dc2d 100644 --- a/.drone.yml +++ b/.drone.yml @@ -6,7 +6,7 @@ pipeline: test: image: golang:1.12.4 commands: - - go test -cover -timeout 30s $(go list ./... | grep -v /vendor/) + - go test -cover -timeout 30s $(go list ./...) test_postgres: image: golang:1.12.4 diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 9e40ab8ac..50748f9e8 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -19,7 +19,7 @@ jobs: - name: Test run: | - go test -cover $(go list ./... | grep -v /vendor/) + go test -cover $(go list ./...) - name: Build run: ./.drone.sh