Skip to content

Commit

Permalink
split into 2 groups
Browse files Browse the repository at this point in the history
  • Loading branch information
charlielye committed May 2, 2024
1 parent 9518b27 commit 6932c43
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions yarn-project/end-to-end/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,13 @@ UPLOAD_LOGS:
RUN --secret AWS_ACCESS_KEY_ID --secret AWS_SECRET_ACCESS_KEY /usr/src/scripts/logs/upload_logs_to_s3.sh /usr/var/log

# Define e2e tests
e2e-tests:
e2e-tests-a-l:
FROM ../+end-to-end
RUN yarn test ./src/e2e & pid=$!; while [ -d /proc/$pid ]; do uptime && free -h; sleep 10; done; wait $pid
RUN yarn test ./src/e2e_[a-l]

e2e-tests-m-z:
FROM ../+end-to-end
RUN yarn test ./src/e2e_[m-z]

flakey-e2e-tests:
FROM ../+end-to-end
Expand Down

0 comments on commit 6932c43

Please sign in to comment.