-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #373 from bnb-chain/develop
release: prepare release for v0.2.3-alpha.7
- Loading branch information
Showing
39 changed files
with
1,594 additions
and
409 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# (mandatory) | ||
# Path to coverprofile file (output of `go test -coverprofile` command) | ||
profile: coverage.out | ||
|
||
# (optional) | ||
# When specified reported file paths will not contain local prefix in the output | ||
local-prefix: "github.com/bnb-chain/greenfield" | ||
|
||
# Holds coverage thresholds percentages, values should be in range [0-100] | ||
threshold: | ||
# (optional; default 0) | ||
# The minimum coverage that each file should have | ||
file: 80 | ||
|
||
# (optional; default 0) | ||
# The minimum coverage that each package should have | ||
package: 80 | ||
|
||
# (optional; default 0) | ||
# The minimum total coverage project should have | ||
total: 80 | ||
|
||
# Holds regexp rules which will override thresholds for matched files or packages | ||
override: | ||
# Increase coverage threshold to 100% for `foo` package (default is 80, as configured above) | ||
# - threshold: 100 | ||
# path: ^pkg/lib/foo$ | ||
|
||
# Holds regexp rules which will exclude matched files or packages from coverage statistics | ||
exclude: | ||
# Exclude files or packages matching their paths | ||
paths: | ||
- \.pb\.go$ # excludes all protobuf generated files | ||
- \.pb\.gw\.go$ # excludes all protobuf generated files | ||
- .*_mocks.go$ # excludes all protobuf generated files | ||
- testutil/.* | ||
- e2e/.* | ||
- internal/sequence/.* | ||
|
||
# NOTES: | ||
# - symbol `/` in all path regexps will be replaced by | ||
# current OS file path separator to properly work on Windows |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.