|
26 | 26 | # In older versions of Next.js both of these need to be set to enable junit reporting |
27 | 27 | DATADOG_TRACE_NEXTJS_TEST:true |
28 | 28 | DATADOG_API_KEY:foo |
29 | | -TEST_CONCURRENCY:2 |
| 29 | +TEST_CONCURRENCY:1 |
| 30 | +TEST_RETRIES:3 |
30 | 31 | NEXT_E2E_TEST_TIMEOUT:300000 |
31 | 32 | NEXT_TELEMETRY_DISABLED:1 |
32 | 33 | NEXT_SKIP_NATIVE_POSTINSTALL:1 |
@@ -240,7 +241,7 @@ jobs: |
240 | 241 | IS_WEBPACK_TEST:${{ steps.decide-default-bundler.outputs.default_bundler == 'webpack' && '1' || '' }} |
241 | 242 | IS_TURBOPACK_TEST:${{ steps.decide-default-bundler.outputs.default_bundler == 'turbopack' && '1' || '' }} |
242 | 243 | NODE_OPTIONS:--import ${{ github.workspace }}/${{ env.runtime-path}}/tools/fetch-retry.mjs |
243 | | -run:node run-tests.js -g ${{ matrix.group }}/${{ needs.setup.outputs.total }} -c ${TEST_CONCURRENCY} --type e2e --retries4 |
| 244 | +run:node run-tests.js -g ${{ matrix.group }}/${{ needs.setup.outputs.total }} -c ${TEST_CONCURRENCY} --type e2e --retries${TEST_RETRIES} |
244 | 245 | working-directory:${{ env.next-path }} |
245 | 246 |
|
246 | 247 | -name:Upload Test Results |
|