From b053a7b668d30a73a357dd228c6be83b3dafefa0 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 11 Jul 2023 15:33:01 +0200 Subject: fixup --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d30063290..72c531604 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -206,10 +206,10 @@ jobs: python -m pip install -U pip python -m pip install -U -r misc/requirements/requirements-tox.txt - name: "Run ${{ matrix.testenv }}" - run: "dbus-run-session -- tox -e ${{ matrix.testenv }} -- ${{ matrix.args }} -- --junit-xml=junit.xml" + run: "dbus-run-session -- tox -e ${{ matrix.testenv }} -- ${{ matrix.args }} --junit-xml=junit.xml" if: "startsWith(matrix.os, 'ubuntu-')" - name: "Run ${{ matrix.testenv }} without DBus" - run: "tox -e ${{ matrix.testenv }} -- ${{ matrix.args }}" + run: "tox -e ${{ matrix.testenv }} -- ${{ matrix.args }} --junit-xml=junit.xml" if: "!startsWith(matrix.os, 'ubuntu-')" - name: Analyze backtraces run: "bash scripts/dev/ci/backtrace.sh ${{ matrix.testenv }}" @@ -220,7 +220,7 @@ jobs: with: name: "${{ matrix.testenv }}" - name: Upload test results to BuildPulse for flaky test detection - if: '!cancelled()' # Run this step even when the tests fail. Skip if the workflow is cancelled. + if: '!cancelled()' # Run this step even when the tests fail. Skip if the workflow is cancelled. uses: buildpulse/buildpulse-action@main with: account: 21955151 -- cgit v1.2.3-54-g00ecf