File tree Expand file tree Collapse file tree 1 file changed +47
-0
lines changed
packages/bisect_ppx/bisect_ppx.2.8.3 Expand file tree Collapse file tree 1 file changed +47
-0
lines changed Original file line number Diff line number Diff line change
1
+ opam-version: "2.0"
2
+
3
+ synopsis: "Code coverage for OCaml"
4
+ license: "MIT"
5
+ homepage: "https://github.com/aantron/bisect_ppx"
6
+ doc: "https://github.com/aantron/bisect_ppx"
7
+ bug-reports: "https://github.com/aantron/bisect_ppx/issues"
8
+
9
+ dev-repo: "git+https://github.com/aantron/bisect_ppx.git"
10
+ authors: [
11
+ "Xavier Clerc <bisect@x9c.fr>"
12
+ "Leonid Rozenberg <leonidr@gmail.com>"
13
+ "Anton Bachin <antonbachin@yahoo.com>"
14
+ ]
15
+ maintainer: [
16
+ "Anton Bachin <antonbachin@yahoo.com>"
17
+ "Leonid Rozenberg <leonidr@gmail.com>"
18
+ ]
19
+
20
+ depends: [
21
+ "base-unix"
22
+ "cmdliner" {>= "1.0.0"}
23
+ "dune" {>= "2.7.0"}
24
+ "ocaml" {>= "4.03.0"}
25
+ "ppxlib" {>= "0.28.0"}
26
+
27
+ "dune" {with-test & >= "3.0.0"}
28
+ "ocamlformat" {with-test & = "0.16.0"}
29
+ ]
30
+
31
+ build: [
32
+ ["dune" "build" "-p" name "-j" jobs]
33
+ ["dune" "build" "-p" name "-j" jobs "@compatible"] {with-test}
34
+ ]
35
+
36
+ description: "Bisect_ppx helps you test thoroughly. It is a small preprocessor
37
+ that inserts instrumentation at places in your code, such as if-then-else and
38
+ match expressions. After you run tests, Bisect_ppx gives a nice HTML report
39
+ showing which places were visited and which were missed.
40
+
41
+ Usage is simple - add package bisect_ppx when building tests, run your tests,
42
+ then run the Bisect_ppx report tool on the generated visitation files."
43
+
44
+ url {
45
+ src: "https://github.com/aantron/bisect_ppx/archive/2.8.3.tar.gz"
46
+ checksum: "md5=8c755c13e8d90f665986d842a41669f5"
47
+ }
You can’t perform that action at this time.
0 commit comments