Skip to content

Commit

Permalink
Fix e2e tests permissions error
Browse files Browse the repository at this point in the history
  • Loading branch information
jbearer committed Jan 26, 2024
1 parent 9daf8b9 commit e920aa3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -874,15 +874,15 @@ jobs:
name: run tests
no_output_timeout: 20m
command: |
mkdir -p /testlogs
mkdir -p ~/testlogs
export OP_E2E_CANNON_ENABLED="<<parameters.cannon_enabled>>"
# Note: We don't use circle CI test splits because we need to split by test name, not by package. There is an additional
# constraint that gotestsum does not currently (nor likely will) accept files from different pacakges when building.
JUNIT_FILE=/tmp/test-results/<<parameters.module>>_<<parameters.target>>.xml make <<parameters.target>> 2>&1 | tee /testlogs/test.log
JUNIT_FILE=/tmp/test-results/<<parameters.module>>_<<parameters.target>>.xml make <<parameters.target>> 2>&1 | tee ~/testlogs/test.log
working_directory: <<parameters.module>>
- store_artifacts:
path: /testlogs
path: ~/testlogs
when: always
- store_test_results:
path: /tmp/test-results
Expand Down

0 comments on commit e920aa3

Please sign in to comment.