File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
.github/actions/linux_browser_tests Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 5858
5959 # Wrap the execution in xvfb-run for virtual display.
6060 # We pass --gtest_output to the runner script, which we should ensure it handles.
61- xvfb-run -a --server-args="${XVFB_SERVER_ARGS}"
62- python3 "${RUN_BROWSER_TESTS_PY}" "${RUNNER_BINARY}"
63- --gtest_filter="${TEST_FILTER}"
64- --gtest_output="xml:${GITHUB_WORKSPACE}/results/cobalt_browsertests_result.xml"
65- 2>&1 | tee "${GITHUB_WORKSPACE}/results/cobalt_browsertests_log.txt"
61+ # Note: Using a single line to avoid backslash continuation issues in GitHub Actions.
62+ xvfb-run -a --server-args="${XVFB_SERVER_ARGS}" python3 "${RUN_BROWSER_TESTS_PY}" "${RUNNER_BINARY}" --gtest_filter="${TEST_FILTER}" --gtest_output="xml:${GITHUB_WORKSPACE}/results/cobalt_browsertests_result.xml" 2>&1 | tee "${GITHUB_WORKSPACE}/results/cobalt_browsertests_log.txt"
6663
6764 - name : Archive Browser Test Results
6865 if : always()
You can’t perform that action at this time.
0 commit comments