summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Telatynski <7t3chguy@gmail.com>2022-05-31 14:05:05 +0100
committerMichael Telatynski <7t3chguy@gmail.com>2022-05-31 14:05:05 +0100
commit71e98756d95fe078cee225235b34c309809bb4a2 (patch)
treedf7e8f43caf1e015e4f3cb03c395877b8dc57582
parentMove coverage files to where the tool expects (diff)
downloadsynapse-71e98756d95fe078cee225235b34c309809bb4a2.tar.xz
Fix coverage upload wildcard
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
-rw-r--r--.github/workflows/tests.yml2
-rw-r--r--sonar-project.properties2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml

index 0b8fe4f50f..93ca17fc21 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml
@@ -121,7 +121,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: coverage-${{ matrix.python-version }}-${{ matrix.database || 'sqlite' }}-${{ matrix.postgres-version || 'none' }} - path: .coverage* + path: .coverage.* retention-days: 1 trial-olddeps: diff --git a/sonar-project.properties b/sonar-project.properties
index 8bd6d18e72..e9a8021e27 100644 --- a/sonar-project.properties +++ b/sonar-project.properties
@@ -11,5 +11,5 @@ sonar.exclusions=changelog.d,debian,demo,docker,docs sonar.coverage.exclusions=tests/**/* sonar.python.coverage.reportPaths=coverage/coverage.xml -sonar.python.version=3.10 +sonar.python.version=3.7,3.8,3.9,3.10