mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 09:14:28 +00:00
20 lines
593 B
Python
20 lines
593 B
Python
load("@prysm//tools/go:def.bzl", "go_test")
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "small",
|
|
srcs = ["verify_blob_kzg_proof_batch_test.go"],
|
|
data = [
|
|
"@consensus_spec_tests_general//:test_data",
|
|
],
|
|
tags = ["spectest"],
|
|
deps = [
|
|
"//beacon-chain/blockchain/kzg:go_default_library",
|
|
"//proto/prysm/v1alpha1:go_default_library",
|
|
"//testing/require:go_default_library",
|
|
"//testing/spectest/utils:go_default_library",
|
|
"//testing/util:go_default_library",
|
|
"@com_github_ghodss_yaml//:go_default_library",
|
|
],
|
|
)
|