We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61546e9 commit 94c8385Copy full SHA for 94c8385
.circleci/config.yml
@@ -28,7 +28,12 @@ jobs:
28
go install golang.org/x/lint/golint@latest && golint ./...
29
- run:
30
name: Run tests
31
- command: GOEXPERIMENT=nocoverageredesign go test -v -cover -coverprofile=coverage.out --tags e2e ./...
+ command: |
32
+ if [[ "$CIRCLE_BRANCH" == pull/* ]]; then
33
+ GOEXPERIMENT=nocoverageredesign go test -v -cover -coverprofile=coverage.out ./...
34
+ else
35
+ GOEXPERIMENT=nocoverageredesign go test -v -cover -coverprofile=coverage.out --tags e2e ./...
36
+ fi
37
38
name: Coverage Report
39
command: |
influxdb3/client_e2e_test.go
@@ -1,3 +1,5 @@
1
+// +build e2e
2
+
3
/*
4
The MIT License
5
0 commit comments