From b9ce2499ceeda109e3ca6d685f106fee8936125f Mon Sep 17 00:00:00 2001 From: Brendan Abolivier Date: Wed, 8 Jun 2022 14:36:02 +0100 Subject: [PATCH] Fix value for TOP in sytest --- .github/workflows/tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 45edd5113c..f5d51a6294 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -201,9 +201,9 @@ jobs: BLACKLIST: ${{ matrix.workers && 'synapse-blacklist-with-workers' }} # $TOP is usually defined as {{ github.workspace }}, however in this case we're # operating in the context of the container, where the path defined by - # github.workspace doesn't exist, and the equivalent path is defined as /src in - # synapse_sytest.sh. - TOP: "/src" + # github.workspace doesn't exist, and the equivalent path is defined as /synapse + # in synapse_sytest.sh. + TOP: "/synapse" strategy: fail-fast: false @@ -417,7 +417,7 @@ jobs: - name: Combine coverage reports run: poetry run coverage combine - name: Write coverage to XML - run: poetry run coverage xml -i + run: poetry run coverage xml - name: Upload combined coverage uses: actions/upload-artifact@v3 with: