Skip to content
Draft
21 changes: 21 additions & 0 deletions rs/nns/integration_tests/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -362,3 +362,24 @@ rust_ic_test(
],
deps = DEPENDENCIES + DEV_DEPENDENCIES,
)

rust_ic_test(
name = "registry_migration",
# This uses on the order of 10 GB of disk space.
# Therefore, size = "large" is not large enough.
size = "enormous",
srcs = [
"src/registry_migration.rs",
],
aliases = ALIASES,
crate_root = "src/registry_migration.rs",
data = DEV_DATA,
env = DEV_ENV,
proc_macro_deps = MACRO_DEPENDENCIES + MACRO_DEV_DEPENDENCIES,
tags = [
"nns_tests_nightly", # Run this test in the nns-tests-nightly GitHub Action job.
"no-sandbox", # such that the test can access the file $SSH_AUTH_SOCK.
"requires-network", # Because mainnet state is downloaded (and used).
],
deps = DEPENDENCIES + DEV_DEPENDENCIES,
)
Loading
Loading