Skip to content

msrexe/patron

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Patron

Patron is a worker orchestrator that can be used to manage multiple goroutine.

🚧 Under construction

Go Reference Go Report Card GitHub go.mod Go version GitHub release (latest SemVer)

Installation

go get github.com/msrexe/patron

Testing

You can run the tests with the following command.

go test .

Code Coverage

You can get the code coverage information with the following command:

go test -cover

If you want to generate a graphical coverage report, you can run the following command:

go tool cover -html=coverage.out

A browser tab will be opened and you will be able to see the graphical report. It shows not tracked, not covered, and covered line on the source code.