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" {>= "2.7.0"} 24 "ocaml" {>= "4.02.0" & < "5.0"} 25 "ppxlib" {>= "0.21.0" & < "0.26.0"} 26 27 "ocamlformat" {with-test & = "0.16.0"} 28] 29 30build: [ 31 ["dune" "build" "-p" name "-j" jobs] 32 ["dune" "build" "-p" name "-j" jobs "@compatible"] {with-test} 33] 34 35description: "Bisect_ppx helps you test thoroughly. It is a small preprocessor 36that inserts instrumentation at places in your code, such as if-then-else and 37match expressions. After you run tests, Bisect_ppx gives a nice HTML report 38showing which places were visited and which were missed. 39 40Usage is simple - add package bisect_ppx when building tests, run your tests, 41then run the Bisect_ppx report tool on the generated visitation files." 42 43url { 44 src: "https://github.com/aantron/bisect_ppx/archive/2.7.1.tar.gz" 45 checksum: [ 46 "sha256=1d3355e996ddd51aa8c83796413c0ce4c03d96d3a4eea1eaa5ab813004ffd562" 47 "md5=d114aa928fc38a0705dbeb2b0396c9d0" 48 ] 49}