summary refs log tree commit diff
path: root/.github/workflows/tests.yml
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2022-06-07 11:23:33 +0100
committerBrendan Abolivier <babolivier@matrix.org>2022-06-07 11:23:33 +0100
commitea2478b68fcc84b618bea0033704a32ae76802d1 (patch)
tree8096f7f19ab5298071afd7fc6cebd87745783c4e /.github/workflows/tests.yml
parentRetrieve coverage files from sytest (diff)
downloadsynapse-ea2478b68fcc84b618bea0033704a32ae76802d1.tar.xz
Make coverage job depend on sytest
Diffstat (limited to '.github/workflows/tests.yml')
-rw-r--r--.github/workflows/tests.yml8
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 143047a9e9..468b17f6bd 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -395,9 +395,11 @@ jobs:
         shell: bash
         name: Run Complement Tests
 
-      # a job which combines the coverage reports from all trials runs, ready for upload to SonarQube.
+  # a job which combines the coverage reports from all trials runs, ready for upload to SonarQube.
   coverage:
-    needs: trial
+    needs:
+      - trial
+      - sytest
     runs-on: ubuntu-latest
     env:
       TOP: ${{ github.workspace }}
@@ -419,7 +421,7 @@ jobs:
           path: coverage.xml
           retention-days: 1
 
-      # a job which marks all the other jobs as complete, thus allowing PRs to be merged.
+  # a job which marks all the other jobs as complete, thus allowing PRs to be merged.
   tests-done:
     if: ${{ always() }}
     needs: