diff --git a/process-compose/movement-full-node/process-compose.test-followers.yml b/process-compose/movement-full-node/process-compose.test-followers.yml index e390ce000..d45f6b1db 100644 --- a/process-compose/movement-full-node/process-compose.test-followers.yml +++ b/process-compose/movement-full-node/process-compose.test-followers.yml @@ -5,7 +5,7 @@ processes: setup: command: | export AWS_REGION=us-west-2 - export MOVEMENT_SYNC="leader::follower-test-$MOVEMENT_SHARED_RANDOM_1<=>{maptos,maptos-storage,movement-da-db}/**" + export MOVEMENT_SYNC="leader::follower-test-$MOVEMENT_SHARED_RANDOM_1<=>{default_signer_address_whitelist,maptos,maptos-storage,movement-da-db}/**" export MAYBE_RUN_LOCAL=true export MAYBE_DEPLOY_MCR=true movement-full-node-setup @@ -36,7 +36,7 @@ processes: export MAPTOS_API_CONNECTION_PORT=31731 export MAPTOS_API_LISTEN_PORT=31731 export DOT_MOVEMENT_PATH=$DOT_MOVEMENT_PATH-follower-1 - export MOVEMENT_SYNC="follower::follower-test-$MOVEMENT_SHARED_RANDOM_1<=>{maptos,maptos-storage,movement-da-db}/**" + export MOVEMENT_SYNC="follower::follower-test-$MOVEMENT_SHARED_RANDOM_1<=>{default_signer_address_whitelist,maptos,maptos-storage,movement-da-db}/**" movement-full-node-setup depends_on: build: @@ -82,7 +82,7 @@ processes: export MAPTOS_API_CONNECTION_PORT=32731 export MAPTOS_API_LISTEN_PORT=32731 export DOT_MOVEMENT_PATH=$DOT_MOVEMENT_PATH-follower-2 - export MOVEMENT_SYNC="follower::follower-test-$MOVEMENT_SHARED_RANDOM_1<=>{maptos,maptos-storage,movement-da-db}/**" + export MOVEMENT_SYNC="follower::follower-test-$MOVEMENT_SHARED_RANDOM_1<=>{default_signer_address_whitelist,maptos,maptos-storage,movement-da-db}/**" movement-full-node-setup depends_on: build: diff --git a/scripts/tests/container-tests b/scripts/tests/container-tests index b06f8cb64..fff4d4bba 100755 --- a/scripts/tests/container-tests +++ b/scripts/tests/container-tests @@ -1,7 +1,7 @@ #!/bin/bash # Run the first test and capture the exit code -STATUS=$(timeout 4m just movement-full-node docker-compose local.faucet-replicas.test --abort-on-container-failure) +STATUS=$(timeout 2m just movement-full-node docker-compose local.faucet-replicas.test --abort-on-container-failure) EXIT_CODE=$? # Clean up before checking the status @@ -21,7 +21,7 @@ else fi # Run the second test and capture the exit code -STATUS=$(timeout 4m just movement-full-node docker-compose local.test-followers --abort-on-container-failure) +STATUS=$(timeout 2m just movement-full-node docker-compose local.test-followers --abort-on-container-failure) EXIT_CODE=$? # Check the exit code and act accordingly