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" 51x-maintenance-intent: [ "(latest)" ] 52url { 53 src: 54 "https://github.com/mirage/alcotest/releases/download/1.9.0/alcotest-1.9.0.tbz" 55 checksum: [ 56 "sha256=e2387136ca854df2b4152139dd4d4b3953a646e804948073dedfe0a232f08a15" 57 "sha512=ba38fe4a9061b001d274e5d41fb06c10c84120570fc00dc57dc5a06ba05176c2413295680d839f465ba91469ea99d7e172a324e26f005d6e8c4d98fca7657241" 58 ] 59} 60x-commit-hash: "263a4245071f6dad243a3d72d9dd875b2bd267a0"