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" {>= "2.8"}
22 "ocaml" {>= "4.03.0"}
23 "fmt" {>= "0.8.7"}
24 "astring"
25 "cmdliner" {>= "1.0.0"}
26 "cmdliner" {with-test & < "1.1.0"}
27 "re" {>= "1.7.2"}
28 "stdlib-shims"
29 "uutf" {>= "1.0.1"}
30 "ocaml-syntax-shims"
31 "odoc" {with-doc}
32]
33conflicts: [
34 "result" {< "1.5"}
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 & ocaml:version < "5.2"}
47 "@doc" {with-doc}
48 ]
49]
50dev-repo: "git+https://github.com/mirage/alcotest.git"
51x-commit-hash: "12889aa7f993ad55434443f1c447a59f18ffc9bf"
52url {
53 src:
54 "https://github.com/mirage/alcotest/releases/download/1.5.0/alcotest-js-1.5.0.tbz"
55 checksum: [
56 "sha256=54281907e02d78995df246dc2e10ed182828294ad2059347a1e3a13354848f6c"
57 "sha512=1aea91de40795ec4f6603d510107e4b663c1a94bd223f162ad231316d8595e9e098cabbe28a46bdcb588942f3d103d8377373d533bcc7413ba3868a577469b45"
58 ]
59}