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 "ocamlfind" {with-test} 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. See 35 https://github.com/aantron/bisect_ppx/releases/tag/1.3.0" 36] 37 38build: [ 39 ["jbuilder" "build" "-p" name "-j" jobs] 40] 41synopsis: "Code coverage for OCaml" 42description: """ 43Bisect_ppx helps you test thoroughly. It is a small preprocessor that inserts 44instrumentation at places in your code, such as if-then-else and match 45expressions. After you run tests, Bisect_ppx gives a nice HTML report showing 46which places were visited and which were missed. 47 48Usage is simple - add package bisect_ppx when building tests, then run the 49report tool on the generated visitation files. 50 51This is an advanced fork of the original Bisect coverage tool. It has many 52improvements and updates. 53 54- Much more thorough code instrumentation, so you can find more gaps in your 55 testing. 56- Fast operation by default. 57- More legible and appealing HTML reports. 58- Various bugfixes. 59- No camlp4 dependency.""" 60url { 61 src: "https://github.com/aantron/bisect_ppx/archive/1.3.3.tar.gz" 62 checksum: [ 63 "sha256=d994fb6f063cae1a10c0482afb140557c14513ca6edf009a68ff948e998791bc" 64 "md5=6d57cab32da2b22fa972b4229597e06f" 65 ] 66}