2021-06-30 19:22:09 +00:00
|
|
|
load("@prysm//tools/go:def.bzl", "go_test")
|
2021-04-22 14:53:30 +00:00
|
|
|
|
|
|
|
go_test(
|
|
|
|
name = "go_default_test",
|
2021-08-31 21:28:09 +00:00
|
|
|
size = "medium",
|
2022-03-30 20:04:42 +00:00
|
|
|
timeout = "short",
|
2021-04-22 14:53:30 +00:00
|
|
|
srcs = [
|
|
|
|
"blocks_test.go",
|
2021-11-19 12:01:15 +00:00
|
|
|
"sanity_test.go",
|
2021-04-22 14:53:30 +00:00
|
|
|
"slots_test.go",
|
|
|
|
],
|
|
|
|
data = glob(["*.yaml"]) + [
|
2021-08-19 18:00:57 +00:00
|
|
|
"@consensus_spec_tests_mainnet//:test_data",
|
2021-04-22 14:53:30 +00:00
|
|
|
],
|
|
|
|
tags = ["spectest"],
|
2021-11-19 12:01:15 +00:00
|
|
|
deps = [
|
|
|
|
"//config/features:go_default_library",
|
|
|
|
"//testing/spectest/shared/phase0/sanity:go_default_library",
|
|
|
|
],
|
2021-04-22 14:53:30 +00:00
|
|
|
)
|