forked from lindig/bisect-summary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbisect-summary.opam
21 lines (20 loc) · 898 Bytes
/
bisect-summary.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
opam-version : "2.0"
maintainer : "Christian Lindig <[email protected]>"
authors : ["Christian Lindig <[email protected]>"]
license : "MIT"
homepage : "https://github.com/lindig/bisect-summary"
bug-reports : "https://github.com/lindig/bisect-summary/issues"
dev-repo : "git://github.com/lindig/bisect-summary.git"
synopsis : "Simple analysis of coverage data created by bisect-ppx"
build: [
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"bisect_ppx"
"dune" {build & >= "1.11.0"}
]
description: """bisect-summary - simple analysis of coverage data created by bisect-ppx
This tool reads the data produced by bisect-ppx-instrumented code at
runtime and reports the coverate ratio. Unlike bisect-ppx-report, it
doesn't require access to the source code of the instrumented code and
the *.pmx files that bisect-ppx created at instrumentation time."""