My sonarcloud doesn't show percent code covered

Template for a good new topic, formatted with Markdown:

  • CI system used Github action
  • Scanner command used when applicable (private details masked)
  • Languages of the repository: C#
  • Only if the SonarCloud project is public, the URL: link github
    • And if you need help with pull request decoration, then the URL to the PR too

I have a project that uses sonar cloud but it does not show the percent of code covered
My yaml file:

name: CI-CD
on:
  push:
    branches:
      - main
  pull_request:
    types: [opened, synchronize, reopened]
jobs:
  build:
    name: CI-CD
    runs-on: windows-latest
    steps:
      - name: Set up JDK 11
        uses: actions/setup-java@v1
        with:
          java-version: 1.11
      - uses: actions/checkout@v2
        with:
          fetch-depth: 0  # Shallow clones should be disabled for a better relevancy of analysis
      - name: Cache SonarCloud packages
        uses: actions/cache@v1
        with:
          path: ~\sonar\cache
          key: ${{ runner.os }}-sonar
          restore-keys: ${{ runner.os }}-sonar
      - name: Cache SonarCloud scanner
        id: cache-sonar-scanner
        uses: actions/cache@v1
        with:
          path: .\.sonar\scanner
          key: ${{ runner.os }}-sonar-scanner
          restore-keys: ${{ runner.os }}-sonar-scanner
      - name: Install SonarCloud scanner
        if: steps.cache-sonar-scanner.outputs.cache-hit != 'true'
        shell: powershell
        run: |
          New-Item -Path .\.sonar\scanner -ItemType Directory
          dotnet tool update dotnet-sonarscanner --tool-path .\.sonar\scanner
      - name: Build and analyze
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}  # Needed to get PR information, if any
          SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
        shell: powershell
        run: |
          .\.sonar\scanner\dotnet-sonarscanner begin /k:"CityDiscoverTourist_CityDiscoverTouristServer" /o:"citydiscovertourist" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.dotnet.excludeTestProjects=true	
          dotnet build CityDiscoverTourist.sln
          .\.sonar\scanner\dotnet-sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}"

Hi,

Welcome to the community!

Your pipeline seems to go straight from checkout to running the analysis. To get coverage info, you’ll need to generate a coverage report in between and pass it into analysis.

 
HTH,
Ann

Hi,
Tks for your reply, but you can be more specific that how can I generate a coverage report(a link or a sample code). I’m quite new at sonarcloud
Many thanks.

Hi,

That’s a bit out of scope for this community, but it looks like there are plenty of tutorials out there…

 
Ann

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.