We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d05ccc9 commit 434b003Copy full SHA for 434b003
.travis.yml
@@ -10,6 +10,9 @@ before_install:
10
# Install tools necessary to report code-coverage to Coveralls.io
11
- go get github.com/mattn/goveralls
12
13
+ # Export some environment variables
14
+ - export GO_TEST_COVERAGE_FILE_NAME='coverage.out'
15
+
16
install:
17
# Get all imported packages
18
- make install-deps install-deps-dev
@@ -24,11 +27,11 @@ script:
24
27
- make copyright-lint
25
28
26
29
# Run tests
- - make test
30
+ - make test-with-coverage-profile
31
32
after_success:
33
# Report our code-coverage to Coveralls.io
- - goveralls -service=travis-ci
34
+ - goveralls -service=travis-ci -coverprofile="${GO_TEST_COVERAGE_FILE_NAME}"
35
36
matrix:
37
allow_failures:
0 commit comments