Skip to content

Commit

Permalink
chore: Do not run e2e-2-pxes along with e2e pxe test (#10155)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
spalladino authored Nov 22, 2024
1 parent fbfe1b1 commit f0f8d22
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions yarn-project/end-to-end/scripts/e2e_test_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: {}
Expand Down Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ const setupEnv = async () => {
return pxe;
};

pxeTestSuite('pxe', setupEnv);
pxeTestSuite('e2e_pxe', setupEnv);

0 comments on commit f0f8d22

Please sign in to comment.