mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 02:31:19 +00:00
21 lines
470 B
Python
21 lines
470 B
Python
|
load("@prysm//tools/go:def.bzl", "go_test")
|
||
|
|
||
|
go_test(
|
||
|
name = "go_default_test",
|
||
|
size = "enormous",
|
||
|
timeout = "short",
|
||
|
srcs = ["forkchoice_test.go"],
|
||
|
data = [
|
||
|
"@consensus_spec_tests_minimal//:test_data",
|
||
|
],
|
||
|
eth_network = "minimal",
|
||
|
tags = [
|
||
|
"minimal",
|
||
|
"spectest",
|
||
|
],
|
||
|
deps = [
|
||
|
"//runtime/version:go_default_library",
|
||
|
"//testing/spectest/shared/common/forkchoice:go_default_library",
|
||
|
],
|
||
|
)
|