Commit 0e85efad authored by Chomtana's avatar Chomtana

Merge branch 'develop' of https://github.com/Chomtana/optimism into typo-op-batcher

parents 8007eeb5 b99dc27a
...@@ -858,11 +858,16 @@ jobs: ...@@ -858,11 +858,16 @@ jobs:
- run: - run:
name: run tests name: run tests
command: | command: |
mkdir -p /testlogs
export OP_E2E_CANNON_ENABLED="<<parameters.cannon_enabled>>" 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 # 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. # 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>> JUNIT_FILE=/tmp/test-results/<<parameters.module>>_<<parameters.target>>.xml make <<parameters.target>> 2>&1 | tee /testlogs/test.log
working_directory: <<parameters.module>> working_directory: <<parameters.module>>
- store_artifacts:
path: /testlogs
when: always
- store_test_results: - store_test_results:
path: /tmp/test-results path: /tmp/test-results
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment