Skip to content
Snippets Groups Projects
Verified Commit 5e6f7902 authored by Lysanne Pinto's avatar Lysanne Pinto :palm_tree: Committed by GitLab
Browse files

Merge branch 'fix-pytest-cov-regex-again' into 'master'

Fix coverage regexes in table

See merge request !154991



Merged-by: default avatarLysanne Pinto <lpinto@gitlab.com>
Approved-by: default avatarLysanne Pinto <lpinto@gitlab.com>
Co-authored-by: default avatarStephen Rosen <sirosen@globus.org>
parents f79ceb20 d9912a2e
No related branches found
No related tags found
2 merge requests!162233Draft: Script to update Topology Service Gem,!154991Fix coverage regexes in table
Pipeline #1323523657 passed with warnings
Pipeline: E2E Omnibus GitLab EE

#1323596707

    Pipeline: E2E CNG

    #1323538053

      Pipeline: E2E GDK

      #1323534122

        +28
        ......@@ -55,14 +55,14 @@ coverage in the tool's output:
        | Name | Language | Command | Example |
        |--------------|--------------|--------------|--------------|
        | Simplecov | Ruby | None | `/\(\d+.\d+\%\) covered/` |
        | pytest-cov | Python | None | `/(?i)total.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/` |
        | Scoverage | Scala | None | `/(?i)total.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/` |
        | pytest-cov | Python | None | `/TOTAL.*? (100(?:\.0+)?\%\|[1-9]?\d(?:\.\d+)?\%)$/` |
        | Scoverage | Scala | None | `/(?i)total.*? (100(?:\.0+)?\%\|[1-9]?\d(?:\.\d+)?\%)$/` |
        | pest | PHP | `pest --coverage --colors=never` | `/Statement coverage[A-Za-z\.*]\s*:\s*([^%]+)/` |
        | phpunit | PHP | `phpunit --coverage-text --colors=never` | `/^\s*Lines:\s*\d+.\d+\%/` |
        | gcovr | C/C++ | None | `/^TOTAL.*\s+(\d+\%)$/` |
        | tap | NodeJs | `tap --coverage-report=text-summary` | `/^Statements\s*:\s*([^%]+)/` |
        | nyc | NodeJs | `nyc npm test` | `/All files[^|]*\|[^|]*\s+([\d\.]+)/` |
        | jest | NodeJs | `jest --ci --coverage` | `/All files[^|]*\|[^|]*\s+([\d\.]+)/` |
        | nyc | NodeJs | `nyc npm test` | `/All files[^\|]*\|[^\|]*\s+([\d\.]+)/` |
        | jest | NodeJs | `jest --ci --coverage` | `/All files[^\|]*\|[^\|]*\s+([\d\.]+)/` |
        | excoveralls | Elixir | None | `/\[TOTAL\]\s+(\d+\.\d+)%/` |
        | mix | Elixir | `mix test --cover` | `/\d+.\d+\%\s+\|\s+Total/` |
        | JaCoCo | Java/Kotlin | None | `/Total.*?([0-9]{1,3})%/` |
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment