Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for htmlFor (0.32 sec)

  1. platforms/jvm/jacoco/src/testFixtures/groovy/org/gradle/testing/jacoco/plugins/fixtures/JacocoReportFixture.groovy

        private static final String NON_BREAKING_WHITESPACE = '\u00A0'
        private final TestFile htmlDir
    
        JacocoReportFixture(TestFile htmlDir) {
            this.htmlDir = htmlDir
        }
    
        boolean exists() {
            htmlDir.file("index.html").exists()
        }
    
        String jacocoVersion() {
            def parsedHtmlReport = Jsoup.parse(htmlDir.file("index.html"), "UTF-8")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. .github/workflows/smokeshow.yml

          - uses: actions/download-artifact@v4
            with:
              name: coverage-html
              path: htmlcov
              github-token: ${{ secrets.FASTAPI_SMOKESHOW_DOWNLOAD_ARTIFACTS }}
              run-id: ${{ github.event.workflow_run.id }}
    
          - run: smokeshow upload htmlcov
            env:
              SMOKESHOW_GITHUB_STATUS_DESCRIPTION: Coverage {coverage-percentage}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 01:06:31 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. .github/workflows/test.yml

          - run: coverage html --show-contexts --title "Coverage for ${{ github.sha }}"
          - name: Store coverage HTML
            uses: actions/upload-artifact@v4
            with:
              name: coverage-html
              path: htmlcov
    
      # https://github.com/marketplace/actions/alls-green#why
      check:  # This job does nothing and is only used for the branch protection
        if: always()
        needs:
          - coverage-combine
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. docs/zh/docs/contributing.md

    ```
    
    </div>
    
    ## 测试
    
    你可以在本地运行下面的脚本来测试所有代码并生成 HTML 格式的覆盖率报告:
    
    <div class="termy">
    
    ```console
    $ bash scripts/test-cov-html.sh
    ```
    
    </div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 11:57:21 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. docs/de/docs/contributing.md

    <div class="termy">
    
    ```console
    $ bash scripts/test-cov-html.sh
    ```
    
    </div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 23:55:23 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top