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.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 & ocaml:version < "5.2"} 46 "@doc" {with-doc} 47 ] 48] 49dev-repo: "git+https://github.com/mirage/alcotest.git" 50url { 51 src: 52 "https://github.com/mirage/alcotest/releases/download/1.6.0/alcotest-1.6.0.tbz" 53 checksum: [ 54 "sha256=fd00f9668395874ff3b1d7ef566d14efc02fa7dd34123eb25d59355be94b2329" 55 "sha512=69a7ef300ba10a9ccb1e25b1cfdb0a0abf9ca976864a52a22f0e1fae1e5d1cbeb99498c086230b839ee9da4d0fd71e63686e126ca42221537f3fdb6f6c5aae95" 56 ] 57} 58x-commit-hash: "6be328d73513db7f32173f86a997a59904fb1ee6"