~kyrofa/unity-scope-snappy/integration-tests_previews

« back to all changes in this revision

Viewing changes to internal/github.com/AlekSi/gocov-xml/README.md

  • Committer: Alejandro J. Cura
  • Date: 2015-06-03 19:46:54 UTC
  • mfrom: (8.1.3 ci_integration)
  • Revision ID: alecu@canonical.com-20150603194654-h4rnrkmefnmgsj49
MergingĀ lp:~kyrofa/unity-scope-snappy/ci_integration

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
gocov XML (Cobertura) export
 
2
============================
 
3
 
 
4
This is a simple helper tool for generating XML output in [Cobertura](http://cobertura.sourceforge.net/) format
 
5
for CIs like [Jenkins](https://wiki.jenkins-ci.org/display/JENKINS/Cobertura+Plugin) and others
 
6
from [github.com/axw/gocov](https://github.com/axw/gocov) output.
 
7
 
 
8
Installation
 
9
------------
 
10
 
 
11
Just type the following to install the program and its dependencies:
 
12
 
 
13
    $ go get github.com/axw/gocov/...
 
14
    $ go get github.com/AlekSi/gocov-xml
 
15
 
 
16
Usage
 
17
-----
 
18
 
 
19
`gocov-xml` reads from the standard input:
 
20
 
 
21
    $ gocov test github.com/gorilla/mux | gocov-xml > coverage.xml
 
22
 
 
23
Authors
 
24
-------
 
25
 
 
26
* [Alexey Palazhchenko (AlekSi)](https://github.com/AlekSi)
 
27
* [Yukinari Toyota (t-yuki)](https://github.com/t-yuki)