From 2d33fc75aa5ef98f2967b165d47b47caa97584e8 Mon Sep 17 00:00:00 2001 From: Dmytro Leshchenko Date: Thu, 2 May 2024 00:26:00 +0200 Subject: [PATCH] Remove old file with coverage report configuration --- .testcoverage.yml | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .testcoverage.yml diff --git a/.testcoverage.yml b/.testcoverage.yml deleted file mode 100644 index df89ced..0000000 --- a/.testcoverage.yml +++ /dev/null @@ -1,43 +0,0 @@ -# (mandatory) -# Path to coverprofile file (output of `go test -coverprofile` command) -profile: cover.out - -# (optional) -# When specified reported file paths will not contain local prefix in the output -local-prefix: "github.com/dl1998/go-logging" - -# 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: 95 - -# Holds regexp rules which will override thresholds for matched files or packages using their paths. -# -# First rule from this list that matches file or package is going to apply new threshold to it. -# If project has multiple rules that match same path, override rules should be listed in order from -# specific to more general rules. -override: - # Increase coverage threshold to 100% for `foo` package (default is 80, as configured above) - # - threshold: 100 - # path: ^internal/testutils$ - -# 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 - - ^internal/testutils # exclude package `pkg/bar` - - ^examples # exclude examples - -# NOTES: -# - symbol `/` in all path regexps will be replaced by -# current OS file path separator to properly work on Windows \ No newline at end of file