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