this repo has no description
1opam-version: "2.0"
2
3synopsis: "Code coverage for OCaml"
4license: "MIT"
5homepage: "https://github.com/aantron/bisect_ppx"
6doc: "https://github.com/aantron/bisect_ppx"
7bug-reports: "https://github.com/aantron/bisect_ppx/issues"
8
9dev-repo: "git+https://github.com/aantron/bisect_ppx.git"
10authors: [
11 "Xavier Clerc <bisect@x9c.fr>"
12 "Leonid Rozenberg <leonidr@gmail.com>"
13 "Anton Bachin <antonbachin@yahoo.com>"
14]
15maintainer: [
16 "Anton Bachin <antonbachin@yahoo.com>"
17 "Leonid Rozenberg <leonidr@gmail.com>"
18]
19
20depends: [
21 "base-unix"
22 "cmdliner" {>= "1.0.0" & < "2.0.0"}
23 "dune"
24 "ocaml" {>= "4.02.0"}
25 "ocaml" {with-test & < "4.12"}
26 "ocaml-migrate-parsetree" {>= "1.7.0" & < "2.0.0"}
27 "ppx_tools_versioned" {>= "5.4.0"}
28
29 "ocamlfind" {with-test}
30 "ounit2" {with-test}
31]
32
33build: [
34 ["dune" "build" "-p" name "-j" jobs]
35 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
36]
37
38post-messages: [
39 "Bisect_ppx 2.0.0 has deprecated some command-line options. See
40 https://github.com/aantron/bisect_ppx/releases/tag/2.0.0"
41]
42
43description: "Bisect_ppx helps you test thoroughly. It is a small preprocessor
44that inserts instrumentation at places in your code, such as if-then-else and
45match expressions. After you run tests, Bisect_ppx gives a nice HTML report
46showing which places were visited and which were missed.
47
48Usage is simple - add package bisect_ppx when building tests, run your tests,
49then run the Bisect_ppx report tool on the generated visitation files."
50
51url {
52 src: "https://github.com/aantron/bisect_ppx/archive/2.4.1.tar.gz"
53 checksum: [
54 "sha256=6552116b8bce000dad7623c38fc8695d7ec6ec0b8ed67abee707031fcdb2cad0"
55 "md5=9551a49de6b80aa7caf20ec693387c86"
56 ]
57}