Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 1.09 KB

README.md

File metadata and controls

40 lines (32 loc) · 1.09 KB

PetriNet Build Status

Resources to read

How to use

Add the plugin in project/plugins.sbt:

addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.0")

Run the tests with enabled coverage:

$ sbt clean coverage test

or if you have integration tests as well

$ sbt clean coverage it:test

To enable coverage directly in your build, use:

coverageEnabled := true

To generate the coverage reports run

$ sbt coverageReport

Coverage reports will be in target/scoverage-report. There are HTML and XML reports.