Explicitly use "" for KEY within the tests

Causes the provided keystore to be used over our keystore.
This commit is contained in:
Luke Parker
2024-03-22 22:34:18 -04:00
parent 08c7c1b413
commit e5afcda76b
2 changed files with 6 additions and 1 deletions

View File

@@ -66,7 +66,9 @@ pub fn serai_composition(name: &str) -> TestBodySpecification {
TestBodySpecification::with_image(
Image::with_repository("serai-dev-serai").pull_policy(PullPolicy::Never),
)
.replace_env([("SERAI_NAME".to_string(), name.to_lowercase())].into())
.replace_env(
[("SERAI_NAME".to_string(), name.to_lowercase()), ("KEY".to_string(), String::new())].into(),
)
.set_publish_all_ports(true)
}