From 1777f5f91f6fc4867f666db0f581d0c10a2e2ffa Mon Sep 17 00:00:00 2001 From: Gregory Edison Date: Fri, 25 Oct 2024 09:00:30 +0200 Subject: [PATCH] fix e2e pipeline script Signed-off-by: Gregory Edison --- scripts/e2e_pipeline.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/e2e_pipeline.sh b/scripts/e2e_pipeline.sh index 8533ebc0e..252fe1f34 100644 --- a/scripts/e2e_pipeline.sh +++ b/scripts/e2e_pipeline.sh @@ -78,7 +78,7 @@ if [ "${ENV}" = "sepolia" ]; then echo "Please provide the EVM_PRIVATE_KEY environment variable." exit 1 fi - SKIP="--ignore tests/end_to_end/L1L2Messaging --ignore tests/end_to_end/CairoPrecompiles --ignore tests/end_to_end/EvmPrecompiles --ignore tests/end_to_end/test_kakarot.py" + SKIP="--ignore tests/end_to_end/L1L2Messaging --ignore tests/end_to_end/CairoPrecompiles -k 'not test_should_set_account_bytecode and not test_should_set_account_nonce and not test_should_upgrade_account_class and not test_should_raise_when_class_hash_is_not_declared and not test_should_upgrade_class_hash and not test_should_transfer_ownership and not test_should_return_transaction_count and not test_should_withdraw_all_eth'" elif [ "${ENV}" = "sepolia-staging" ]; then export EVM_PRIVATE_KEY="0x59c6995e998f97a5a0044966f0945389dc9e86dae88c7a8412f4603b6b78690d" export RPC_URL="https://juno-kakarot-sepolia.karnot.xyz/" @@ -95,7 +95,7 @@ elif [ "${ENV}" = "sepolia-staging" ]; then exit 1 fi - SKIP="--ignore tests/end_to_end/L1L2Messaging --ignore tests/end_to_end/CairoPrecompiles" + SKIP="--ignore tests/end_to_end/L1L2Messaging --ignore tests/end_to_end/CairoPrecompiles -k 'not test_should_set_account_bytecode and not test_should_set_account_nonce and not test_should_upgrade_account_class and not test_should_raise_when_class_hash_is_not_declared and not test_should_upgrade_class_hash and not test_should_transfer_ownership and not test_should_return_transaction_count and not test_should_withdraw_all_eth'" fi # Deploy the contracts if the deploy command is provided