Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Fix codecov #1144

Merged
merged 3 commits into from
Sep 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions .github/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ ignore:
- misc

comment:
layout: "header, diff, flags, components"
require_changes: true

coverage:
Expand All @@ -23,18 +24,17 @@ coverage:
default:
target: auto

flags:
default_rules:
carryforward: true
tm2:
paths:
- tm2
after_n_builds: 4
gnovm:
paths:
- gnovm
after_n_builds: 9
gno.land:
paths:
- gno.land
after_n_builds: 3
component_management:
individual_components:
- component_id: tm2
name: tm2
paths:
- tm2
- component_id: gnovm
name: gnovm
paths:
- gnovm
- component_id: gno.land
name: gno.land
paths:
- gno.land
1 change: 1 addition & 0 deletions gnovm/pkg/doc/dirs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ func tNewDirs(t *testing.T) (string, *bfsDirs) {
// dependency lookup by dirs.
old, ex := os.LookupEnv("GNO_HOME")
os.Setenv("GNO_HOME", wdJoin(t, "testdata/dirsdep"))

t.Cleanup(func() {
if ex {
os.Setenv("GNO_HOME", old)
Expand Down
Loading