Skip to content

robertstettner/drone-codecov

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

drone-codecov

Build Status

Drone plugin for pushing test coverage to Codecov

This plugin allows for pushing test coverage results to Codecov.

Configuration

The following parameters are used to configure the plugin:

  • token: set the private repository token. Required.
  • files: list of target files to upload. Optional.
  • flags: flag the upload to group coverage metrics. Optional.
  • debug: debug mode, defaults to false.

Drone configuration examples

Simple example:

pipeline:
  build:
    image: node:6
    commands:
      - npm install
      - npm test

  codecov:
    image: robertstettner/drone-codecov
    token: ${CODECOV_TOKEN}

Unit and component test example:

pipeline:
  build:
    image: node:6
    commands:
      - npm install
      - npm test

  unit_codecov:
    image: robertstettner/drone-codecov
    token: ${CODECOV_TOKEN}
+   files: 
+     - app1/coverage/unit/lcov.info
+     - app2/coverage/unit/lcov.info
+   flags:
+     - unit
      
  component_codecov:
    image: robertstettner/drone-codecov
    token: ${CODECOV_TOKEN}
+   files: 
+     - app1/coverage/component/lcov.info
+     - app2/coverage/component/lcov.info
+   flags:
+     - component

About

Drone plugin for pushing test coverage to Codecov

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages