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.05.0"}
23 "fmt" {>= "0.8.7"}
24 "astring"
25 "cmdliner" {>= "1.1.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]
35build: [
36 ["dune" "subst"] {dev}
37 [
38 "dune"
39 "build"
40 "-p"
41 name
42 "-j"
43 jobs
44 "@install"
45 "@runtest" {with-test & arch != "arm32" & arch != "x86_32"
46 & arch != "s390x" & arch != "ppc64"
47 & ocaml:version < "5.2"}
48 "@doc" {with-doc}
49 ]
50]
51dev-repo: "git+https://github.com/mirage/alcotest.git"
52url {
53 src:
54 "https://github.com/mirage/alcotest/releases/download/1.7.0/alcotest-1.7.0.tbz"
55 checksum: [
56 "sha256=812bacdb34b45e88995e07d7306bdab2f72479ef1996637f1d5d1f41667902df"
57 "sha512=4ae1ba318949ec9db8b87bc8072632a02f0e4003a95ab21e474f5c34c3b5bde867b0194a2d0ea7d9fc4580c70a30ca39287d33a8c134acc7611902f79c7b7ce8"
58 ]
59}
60x-commit-hash: "927088ffadce153306a36cef4d0fed52609208f6"