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