this repo has no description
1opam-version: "2.0"
2
3synopsis: "Code coverage for OCaml"
4license: "MPL-2.0"
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 "dune"
23 "ocaml" {>= "4.02.0"}
24 "ocaml-migrate-parsetree" {>= "1.4.0" & < "2.0.0"}
25 "ppx_tools_versioned" {>= "5.2.3"}
26
27 "ocamlfind" {dev}
28 "ounit" {dev}
29]
30conflicts: [
31 "ocveralls" {<= "0.3.2"}
32]
33
34build: [
35 ["dune" "build" "-p" name "-j" jobs]
36]
37
38description: "Bisect_ppx helps you test thoroughly. It is a small preprocessor
39that inserts instrumentation at places in your code, such as if-then-else and
40match expressions. After you run tests, Bisect_ppx gives a nice HTML report
41showing which places were visited and which were missed.
42
43Usage is simple - add package bisect_ppx when building tests, run your tests,
44then run the Bisect_ppx report tool on the generated visitation files."
45
46url {
47 src: "https://github.com/aantron/bisect_ppx/archive/1.4.2.tar.gz"
48 checksum: [
49 "sha256=b6635adfad9804dbaa1858d0be6d4adeaa39585f704f26d43b51e7281320caa6"
50 "md5=8b20abf343d34dd00eaf60670f87ee7d"
51 ]
52}