this repo has no description
1opam-version: "2.0"
2maintainer: [
3 "Anton Bachin <antonbachin@yahoo.com>"
4 "Leonid Rozenberg <leonidr@gmail.com>"
5]
6authors: [
7 "Xavier Clerc <bisect@x9c.fr>"
8 "Leonid Rozenberg <leonidr@gmail.com>"
9 "Anton Bachin <antonbachin@yahoo.com>"
10]
11license: "MPL-2.0"
12homepage: "https://github.com/aantron/bisect_ppx"
13bug-reports: "https://github.com/aantron/bisect_ppx/issues"
14dev-repo: "git+https://github.com/aantron/bisect_ppx.git"
15depends: [
16 "ocaml" {>= "4.02.0"}
17 "base-unix"
18 "jbuilder" {>= "1.0+beta13"}
19 "ocamlbuild"
20 "ocaml-migrate-parsetree" {>= "1.0.3" & < "2.0.0"}
21 "ounit" {with-test}
22 "ppx_tools_versioned"
23]
24conflicts: [
25 "ocveralls" {<= "0.3.2"}
26]
27# Note that Bisect_ppx effectively requires 4.02.3, because Jbuilder requires
28# it. 4.02.0 is the natural constraint of Bisect_ppx.
29messages: [
30 "For the Ocamlbuild plugin, please install package bisect_ppx-ocamlbuild"
31 {ocamlbuild:installed & !bisect_ppx-ocamlbuild:installed}
32]
33post-messages: [
34 "The future Bisect_ppx 2.0.0 will make breaking changes in late 2017. See
35 https://github.com/aantron/bisect_ppx/releases/tag/1.3.0"
36]
37
38build: [
39 ["jbuilder" "build" "-p" name "-j" jobs]
40 ["jbuilder" "runtest" "-p" name] {with-test & ocaml:version < "4.08.0"}
41]
42synopsis: "Code coverage for OCaml"
43description: """
44Bisect_ppx helps you test thoroughly. It is a small preprocessor that inserts
45instrumentation at places in your code, such as if-then-else and match
46expressions. After you run tests, Bisect_ppx gives a nice HTML report showing
47which places were visited and which were missed.
48
49Usage is simple - add package bisect_ppx when building tests, then run the
50report tool on the generated visitation files.
51
52This is an advanced fork of the original Bisect coverage tool. It has many
53improvements and updates.
54
55- Much more thorough code instrumentation, so you can find more gaps in your
56 testing.
57- Fast operation by default.
58- More legible and appealing HTML reports.
59- Various bugfixes.
60- No camlp4 dependency."""
61url {
62 src: "https://github.com/aantron/bisect_ppx/archive/1.3.1.tar.gz"
63 checksum: [
64 "sha256=1e646eafe6eb7a3ee36428dee8b772ac3e926d505dfd0d8178412e2c66b489dc"
65 "md5=9b76f6f192307ec7098ded5e36670df2"
66 ]
67}