Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
[ci skip-rust]

[ci skip-build-wheels]
  • Loading branch information
Tom Dyas committed Aug 17, 2022
1 parent d60e487 commit 74d7be4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/python/pants/backend/experimental/go/register.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
assembly,
build_pkg,
build_pkg_target,
coverage,
coverage_output,
first_party_pkg,
go_bootstrap,
go_mod,
Expand All @@ -25,7 +27,7 @@
pkg_analyzer,
sdk,
tests_analysis,
third_party_pkg, coverage, coverage_output,
third_party_pkg,
)


Expand Down
6 changes: 5 additions & 1 deletion src/python/pants/backend/go/util_rules/build_pkg.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import os.path
from dataclasses import dataclass

from pants.backend.go.util_rules import coverage
from pants.backend.go.util_rules.assembly import (
AssemblyPostCompilation,
AssemblyPostCompilationRequest,
Expand Down Expand Up @@ -471,4 +472,7 @@ async def compute_compile_action_id(


def rules():
return collect_rules()
return (
*collect_rules(),
*coverage.rules(),
)

0 comments on commit 74d7be4

Please sign in to comment.