this repo has no description
1opam-version: "2.0"
2synopsis: "Alcotest is a lightweight and colourful test framework"
3description: """
4Alcotest exposes simple interface to perform unit tests. It exposes
5a simple TESTABLE module type, a check function to assert test
6predicates and a run function to perform a list of unit -> unit
7test callbacks.
8
9Alcotest provides a quiet and colorful output where only faulty runs
10are fully displayed at the end of the run (with the full logs ready to
11inspect), with a simple (yet expressive) query language to select the
12tests to run.
13"""
14maintainer: ["thomas@gazagnaire.org"]
15authors: ["Thomas Gazagnaire"]
16license: "ISC"
17homepage: "https://github.com/mirage/alcotest"
18doc: "https://mirage.github.io/alcotest"
19bug-reports: "https://github.com/mirage/alcotest/issues"
20depends: [
21 "dune" {>= "3.0"}
22 "ocaml" {>= "4.08"}
23 "fmt" {>= "0.8.7"}
24 "astring"
25 "cmdliner" {>= "1.2.0"}
26 "re" {>= "1.7.2"}
27 "stdlib-shims"
28 "uutf" {>= "1.0.1"}
29 "ocaml-syntax-shims"
30 "odoc" {with-doc}
31]
32conflicts: [
33 "result" {< "1.5"}
34 "js_of_ocaml-compiler" {< "5.8"}
35]
36build: [
37 ["dune" "subst"] {dev}
38 [
39 "dune"
40 "build"
41 "-p"
42 name
43 "-j"
44 jobs
45 "@install"
46 "@runtest" {with-test}
47 "@doc" {with-doc}
48 ]
49]
50dev-repo: "git+https://github.com/mirage/alcotest.git"
51url {
52 src:
53 "https://github.com/mirage/alcotest/releases/download/1.8.0/alcotest-1.8.0.tbz"
54 checksum: [
55 "sha256=cba1bd01707c8c55b4764bb0df8c9c732be321e1f1c1a96a406e56d8dbca1d0e"
56 "sha512=eebb034c990abd253f526e848a99881686d7bd3c7d1b1d373953d568d062e3d5aaa79b6b4807455aaa9a98710eca4ada30e816a0134717a380619a597575564d"
57 ]
58}
59x-commit-hash: "6313c95008cc5d87888cdd86ae1c25e50627f466"
60x-maintenance-intent: [ "(latest)" ]