mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
7a3df7642b
* update go * Update rules_go patch * Update gazelle * begin building * qtls * gaz Co-authored-by: prestonvanloon <preston@prysmaticlabs.com>
25 lines
795 B
Diff
25 lines
795 B
Diff
diff --git a/go/private/rules/test.bzl b/go/private/rules/test.bzl
|
|
index a88ebcc9..f23b0dfb 100644
|
|
--- a/go/private/rules/test.bzl
|
|
+++ b/go/private/rules/test.bzl
|
|
@@ -185,7 +185,7 @@ def _go_test_impl(ctx):
|
|
testing.TestEnvironment(env),
|
|
]
|
|
|
|
-_go_test_kwargs = {
|
|
+go_test_kwargs = {
|
|
"implementation": _go_test_impl,
|
|
"attrs": {
|
|
"data": attr.label_list(
|
|
@@ -439,8 +439,8 @@ _go_test_kwargs = {
|
|
""",
|
|
}
|
|
|
|
-go_test = rule(**_go_test_kwargs)
|
|
-go_transition_test = go_transition_rule(**_go_test_kwargs)
|
|
+go_test = rule(**go_test_kwargs)
|
|
+go_transition_test = go_transition_rule(**go_test_kwargs)
|
|
|
|
def _recompile_external_deps(go, external_source, internal_archive, library_labels):
|
|
"""Recompiles some archives in order to split internal and external tests.
|