Skip to content

Commit c266015

Browse files
Print the current dir to check on CI
1 parent acf3b44 commit c266015

File tree

1 file changed

+10
-0
lines changed
  • aggregation_mode/proof_aggregator/src/backend

1 file changed

+10
-0
lines changed

aggregation_mode/proof_aggregator/src/backend/mod.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -394,6 +394,16 @@ mod tests {
394394

395395
let current_dir = env!("CARGO_MANIFEST_DIR");
396396

397+
info!("Current dir for tests: {}", current_dir);
398+
399+
// Check that the config file paths exist
400+
let ecdsa_key_path =
401+
format!("{current_dir}/../config-files/anvil.proof-aggregator.ecdsa.key.json");
402+
403+
if !std::path::Path::new(&ecdsa_key_path).exists() {
404+
info!("ECDSA key file does not exist at path: {}", ecdsa_key_path);
405+
}
406+
397407
// These config values are taken from config-files/config-proof-aggregator.yaml
398408
let config = Config {
399409
eth_rpc_url: "http://localhost:8545".to_string(),

0 commit comments

Comments
 (0)