Skip to content

lukaville/stash-code-coverage

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bitbucket Server Code Coverage

Chrome extension that displays code coverage button on pull requests in Bitbucket Server

Screenshot

Build

Run:

gradle build

Extension will appear in build/extension directory.

Configuration

Sample configuration:

{
  "projects": [
    {
      "bitbucket": {
        "project": "AA",
        "repository": "example-repository",
        "host": "stash.example.org"
      },
      "excludeFiles": [
        ".*Test\\..*"
      ],
      "includeFiles": [
        ".*\\.java",
        ".*\\.kt"
      ],
      "sourceDirectories": [
        "example/src/main/java"
      ],
      "teamCity": {
        "host": "teamcity.example.org",
        "buildTypeId": "ExampleBuildType"
      }
    }
  ]
}