Skip to content

Commit 3e3c7a1

Browse files
committed
Bisect_ppx 2.8.2: code coverage analysis for OCaml
1 parent 12a9420 commit 3e3c7a1

File tree

1 file changed

+46
-0
lines changed
  • packages/bisect_ppx/bisect_ppx.2.8.2

1 file changed

+46
-0
lines changed
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
opam-version: "2.0"
2+
3+
synopsis: "Code coverage for OCaml"
4+
license: "MIT"
5+
homepage: "https://github.com/aantron/bisect_ppx"
6+
doc: "https://github.com/aantron/bisect_ppx"
7+
bug-reports: "https://github.com/aantron/bisect_ppx/issues"
8+
9+
dev-repo: "git+https://github.com/aantron/bisect_ppx.git"
10+
authors: [
11+
"Xavier Clerc <[email protected]>"
12+
"Leonid Rozenberg <[email protected]>"
13+
"Anton Bachin <[email protected]>"
14+
]
15+
maintainer: [
16+
"Anton Bachin <[email protected]>"
17+
"Leonid Rozenberg <[email protected]>"
18+
]
19+
20+
depends: [
21+
"base-unix"
22+
"cmdliner" {>= "1.0.0"}
23+
"dune" {>= "2.7.0"}
24+
"ocaml" {>= "4.03.0"}
25+
"ppxlib" {>= "0.26.0" & < "0.28.0"}
26+
27+
"ocamlformat" {with-test & = "0.16.0"}
28+
]
29+
30+
build: [
31+
["dune" "build" "-p" name "-j" jobs]
32+
["dune" "build" "-p" name "-j" jobs "@compatible"] {with-test}
33+
]
34+
35+
description: "Bisect_ppx helps you test thoroughly. It is a small preprocessor
36+
that inserts instrumentation at places in your code, such as if-then-else and
37+
match expressions. After you run tests, Bisect_ppx gives a nice HTML report
38+
showing which places were visited and which were missed.
39+
40+
Usage is simple - add package bisect_ppx when building tests, run your tests,
41+
then run the Bisect_ppx report tool on the generated visitation files."
42+
43+
url {
44+
src: "https://github.com/aantron/bisect_ppx/archive/2.8.2.tar.gz"
45+
checksum: "md5=b8d59052bc0872349c0d9b792a66deef"
46+
}

0 commit comments

Comments
 (0)