From 344060a7dbdfaf161d0940d25087521ba342f2f4 Mon Sep 17 00:00:00 2001 From: Santiago Palladino Date: Fri, 22 Nov 2024 17:08:46 -0300 Subject: [PATCH] chore: Do not run e2e-2-pxes along with e2e pxe test Running the e2e pxe test would also run 2-pxes on the same job, since jest matches tests by substring. This renames the pxe to e2e-pxe to avoid clashes. --- yarn-project/end-to-end/scripts/e2e_test_config.yml | 4 ++-- .../end-to-end/src/composed/{pxe.test.ts => e2e_pxe.test.ts} | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename yarn-project/end-to-end/src/composed/{pxe.test.ts => e2e_pxe.test.ts} (87%) diff --git a/yarn-project/end-to-end/scripts/e2e_test_config.yml b/yarn-project/end-to-end/scripts/e2e_test_config.yml index ffee94e2933..b70bd9024d2 100644 --- a/yarn-project/end-to-end/scripts/e2e_test_config.yml +++ b/yarn-project/end-to-end/scripts/e2e_test_config.yml @@ -75,6 +75,8 @@ tests: env: HARDWARE_CONCURRENCY: '32' e2e_public_testnet: {} + e2e_pxe: + use_compose: true e2e_sandbox_example: use_compose: true e2e_state_vars: {} @@ -112,8 +114,6 @@ tests: test_path: 'guides/writing_an_account_contract.test.ts' integration_l1_publisher: use_compose: true - pxe: - use_compose: true # https://github.com/AztecProtocol/aztec-packages/issues/10030 # uniswap_trade_on_l1_from_l2: # use_compose: true diff --git a/yarn-project/end-to-end/src/composed/pxe.test.ts b/yarn-project/end-to-end/src/composed/e2e_pxe.test.ts similarity index 87% rename from yarn-project/end-to-end/src/composed/pxe.test.ts rename to yarn-project/end-to-end/src/composed/e2e_pxe.test.ts index 6e972b8eb6e..89bcae3be1a 100644 --- a/yarn-project/end-to-end/src/composed/pxe.test.ts +++ b/yarn-project/end-to-end/src/composed/e2e_pxe.test.ts @@ -9,4 +9,4 @@ const setupEnv = async () => { return pxe; }; -pxeTestSuite('pxe', setupEnv); +pxeTestSuite('e2e_pxe', setupEnv);