package alcotest

  1. Overview
  2. Docs
Alcotest is a lightweight and colourful test framework

Install

dune-project
 Dependency

Authors

Maintainers

Sources

alcotest-js-1.5.0.tbz
sha256=54281907e02d78995df246dc2e10ed182828294ad2059347a1e3a13354848f6c
sha512=1aea91de40795ec4f6603d510107e4b663c1a94bd223f162ad231316d8595e9e098cabbe28a46bdcb588942f3d103d8377373d533bcc7413ba3868a577469b45

Description

Alcotest exposes simple interface to perform unit tests. It exposes a simple TESTABLE module type, a check function to assert test predicates and a run function to perform a list of unit -> unit test callbacks.

Alcotest provides a quiet and colorful output where only faulty runs are fully displayed at the end of the run (with the full logs ready to inspect), with a simple (yet expressive) query language to select the tests to run.

Added to opam-repository:

README

A lightweight and colourful test framework.


Alcotest exposes a simple interface to perform unit tests. It exposes a simple TESTABLE module type, a check function to assert test predicates and a run function to perform a list of unit -> unit test callbacks.

Alcotest provides a quiet and colorful output where only faulty runs are fully displayed at the end of the run (with the full logs ready to inspect), with a simple (yet expressive) query language to select the tests to run. See the manpage for details.

The API documentation can be found [here][docs]. For information on contributing to Alcotest, see CONTRIBUTING.md.

OCaml-CI Build Status docs


Examples

A simple example (taken from examples/simple.ml):

Generated by the following test suite specification:

(* Build with `ocamlbuild -pkg alcotest simple.byte` *)

(* A module with functions to test *)
module To_test = struct
  let lowercase = String.lowercase_ascii
  let capitalize = String.capitalize_ascii
  let str_concat = String.concat ""
  let list_concat = List.append
end

(* The tests *)
let test_lowercase () =
  Alcotest.(check string) "same string" "hello!" (To_test.lowercase "hELLO!")

let test_capitalize () =
  Alcotest.(check string) "same string" "World." (To_test.capitalize "world.")

let test_str_concat () =
  Alcotest.(check string) "same string" "foobar" (To_test.str_concat ["foo"; "bar"])

let test_list_concat () =
  Alcotest.(check (list int)) "same lists" [1; 2; 3] (To_test.list_concat [1] [2; 3])

(* Run it *)
let () =
  let open Alcotest in
  run "Utils" [
      "string-case", [
          test_case "Lower case"     `Quick test_lowercase;
          test_case "Capitalization" `Quick test_capitalize;
        ];
      "string-concat", [ test_case "String mashing" `Quick test_str_concat  ];
      "list-concat",   [ test_case "List mashing"   `Slow  test_list_concat ];
    ]

The result is a self-contained binary which displays the test results. Use dune exec examples/simple.exe -- --help to see the runtime options.

Here's an example of a of failing test suite:

By default, only the first failing test log is printed to the console (and all test logs are captured on disk). Pass --show-errors to print all error messages.

Selecting tests to execute

You can filter which tests to run by supplying a regular expression matching the names of the tests to execute, or by passing a regular expression and a comma-separated list of test numbers (or ranges of test numbers, e.g. 2,4..9):

$ ./simple.native test '.*concat*'
Testing Utils.
[SKIP]     string-case            0   Lower case.
[SKIP]     string-case            1   Capitalization.
[OK]       string-concat          0   String mashing.
[OK]       list-concat            0   List mashing.
The full test results are available in `_build/_tests`.
Test Successful in 0.000s. 2 tests run.

$ ./simple.native test 'string-case' '1..3'
Testing Utils.
[SKIP]     string-case            0   Lower case.
[OK]       string-case            1   Capitalization.
[SKIP]     string-concat          0   String mashing.
[SKIP]     list-concat            0   List mashing.
The full test results are available in `_build/_tests`.
Test Successful in 0.000s. 1 test run.

Note that you cannot filter by test case name (i.e. Lower case or Capitalization), you must filter by test name & number instead.

See the examples folder for more examples.

Quick and Slow tests

In general you should use `Quick tests: tests that are ran on any invocations of the test suite. You should only use `Slow tests for stress tests that are ran only on occasion (typically before a release or after a major change). These slow tests can be suppressed by passing the -q flag on the command line, e.g.:

$ ./test.exe -q # run only the quick tests
$ ./test.exe    # run quick and slow tests

Passing custom options to the tests

In most cases, the base tests are unit -> unit functions. However, it is also possible to pass an extra option to all the test functions by using 'a -> unit, where 'a is the type of the extra parameter.

In order to do this, you need to specify how this extra parameter is read on the command-line, by providing a Cmdliner term for command-line arguments which explains how to parse and serialize values of type 'a (note: do not use positional arguments, only optional arguments are supported).

For instance:

let test_nice i = Alcotest.(check int) "Is it a nice integer?" i 42

let int =
  let doc = "What is your prefered number?" in
  Cmdliner.Arg.(required & opt (some int) None & info ["n"] ~doc ~docv:"NUM")

let () =
  Alcotest.run_with_args "foo" int [
    "all", ["nice", `Quick, test_nice]
  ]

Will generate test.exe such that:

$ test.exe test
test.exe: required option -n is missing

$ test.exe test -n 42
Testing foo.
[OK]                all          0   int.

Lwt

Alcotest provides an Alcotest_lwt module that you could use to wrap Lwt test cases. The basic idea is that instead of providing a test function in the form unit -> unit, you provide one with the type unit -> unit Lwt.t and alcotest-lwt calls Lwt_main.run for you.

However, there are a couple of extra features:

  • If an async exception occurs, it will cancel your test case for you and fail it (rather than exiting the process).
  • You get given a switch, which will be turned off when the test case finishes (or fails). You can use that to free up any resources.

For instance:

let free () = print_endline "freeing all resources"; Lwt.return ()

let test_lwt switch () =
  Lwt_switch.add_hook (Some switch) free;
  Lwt.async (fun () -> failwith "All is broken");
  Lwt_unix.sleep 10.

let () =
  Lwt_main.run @@ Alcotest_lwt.run "foo" [
    "all", [
      Alcotest_lwt.test_case "one" `Quick test_lwt
    ]
  ]

Will generate:

$ test.exe
Testing foo.
[ERROR]             all          0   one.
-- all.000 [one.] Failed --
in _build/_tests/all.000.output:
freeing all resources
[failure] All is broken

Comparison with other testing frameworks

The README is pretty clear about that:

Alcotest is the only testing framework using colors!

More seriously, Alcotest is similar to ounit but it fixes a few of the problems found in that library:

  • Alcotest has a nicer output, it is easier to see what failed and what succeeded and to read the log outputs of the failed tests;
  • Alcotest uses combinators to define pretty-printers and comparators between the things to test.

Other nice tools doing different kind of testing also exist:

  • qcheck qcheck does random generation and property testing (e.g. Quick Check)
  • crowbar and bun are similar to qcheck, but use compiler-directed randomness, e.g. it takes advantage of the AFL support the OCaml compiler.
  • ppx_inline_tests allows to write tests in the same file as your source-code; they will be run only in a special mode of compilation.

Dependencies (9)

  1. ocaml-syntax-shims
  2. uutf >= "1.0.1"
  3. stdlib-shims
  4. re >= "1.7.2"
  5. cmdliner >= "1.0.0" & < "2.0.0"
  6. astring
  7. fmt >= "0.8.7"
  8. ocaml >= "4.03.0"
  9. dune >= "2.8"

Dev Dependencies (2)

  1. odoc with-doc
  2. cmdliner with-test & < "1.1.0"

  1. aho-corasick
  2. ahrocksdb
  3. albatross >= "1.5.4"
  4. alcobar
  5. alcotest-async < "1.7.0"
  6. alg_structs_qcheck
  7. algaeff
  8. ambient-context
  9. ambient-context-eio
  10. ambient-context-lwt
  11. angstrom >= "0.7.0"
  12. ansi >= "0.6.0"
  13. anycache >= "0.7.4"
  14. anycache-lwt
  15. arc
  16. archetype >= "1.4.2"
  17. archi
  18. arp
  19. arrakis < "1.1.0"
  20. art < "0.3.0"
  21. asai
  22. asak
  23. asli >= "0.2.0"
  24. asn1-combinators >= "0.2.5"
  25. atd >= "2.3.3"
  26. atdgen >= "2.10.0"
  27. atdpy
  28. atdts
  29. aws-eio
  30. awskit < "0.2.0"
  31. awskit-eio < "0.2.0"
  32. awskit-lwt < "0.2.0"
  33. awskit-lwt-unix < "0.2.0"
  34. awskit-s3 < "0.2.0"
  35. awskit-s3-eio < "0.2.0"
  36. awskit-s3-lwt < "0.2.0"
  37. awskit-s3-lwt-unix < "0.2.0"
  38. awskit-s3-sim < "0.2.0"
  39. azure-cosmos-db-eio
  40. base32
  41. base64 >= "2.1.2" & < "3.2.0" | >= "3.4.0"
  42. bastet
  43. bastet_async
  44. bastet_lwt
  45. bech32
  46. bechamel >= "0.5.0"
  47. bigarray-overlap
  48. bigstringaf
  49. bin_there
  50. biotk >= "0.4"
  51. bitlib
  52. bizowie-api
  53. blake2
  54. bloomf
  55. bls12-381 < "0.4.1" | >= "3.0.0" & < "18.0"
  56. bls12-381-hash
  57. bls12-381-js >= "0.4.2"
  58. bls12-381-js-gen >= "0.4.2"
  59. bls12-381-legacy
  60. bls12-381-signature
  61. bls12-381-unix
  62. blurhash
  63. bm25
  64. brisk-reconciler
  65. builder-web
  66. bytebuffer
  67. bytream >= "0.2"
  68. ca-certs
  69. ca-certs-nss
  70. cabal
  71. cactus
  72. caldav
  73. calendar >= "3.0.0"
  74. calendars >= "2.0.0"
  75. callipyge
  76. camlix
  77. camlkit
  78. camlkit-base
  79. capnp-rpc < "1.2.3"
  80. capnp-rpc-unix < "1.2.3"
  81. caqti >= "1.7.0"
  82. caqti-async >= "1.7.0"
  83. caqti-driver-mariadb >= "1.7.0"
  84. caqti-driver-postgresql >= "1.7.0"
  85. caqti-driver-sqlite3 >= "1.7.0"
  86. caqti-dynload = "2.0.1"
  87. caqti-eio
  88. caqti-lwt >= "1.7.0"
  89. caqti-miou
  90. carray
  91. carton < "1.0.0"
  92. carton-git
  93. carton-lwt >= "0.4.3" & < "1.0.0"
  94. catala >= "0.6.0"
  95. cborl
  96. cf-lwt
  97. chacha
  98. chamelon
  99. chamelon-unix
  100. charrua-client
  101. charrua-server
  102. checkseum >= "0.0.3"
  103. cid
  104. clarity-lang
  105. class_group_vdf
  106. cohttp < "6.0.0"
  107. cohttp-curl-async < "6.1.0"
  108. cohttp-eio = "6.0.0~beta2"
  109. colombe >= "0.2.0"
  110. color
  111. commons
  112. conan
  113. conan-cli
  114. conan-database
  115. conan-lwt
  116. conan-unix
  117. conex < "0.10.0"
  118. conex-mirage-crypto
  119. conformist
  120. cookie
  121. cow >= "2.2.0"
  122. crockford
  123. css
  124. css-parser
  125. cstruct
  126. cstruct-sexp
  127. ctypes-zarith
  128. cuid
  129. curly
  130. current
  131. current-albatross-deployer
  132. current_git >= "0.7.1"
  133. current_incr
  134. current_rpc >= "0.7.4"
  135. data-encoding
  136. dates_calc
  137. dbase4
  138. decimal >= "0.3.0"
  139. decompress < "1.5.3"
  140. depyt
  141. digestif >= "0.9.0"
  142. dispatch >= "0.4.1"
  143. dkim
  144. dkim-bin
  145. dkim-mirage
  146. dkml-dune-dsl-show
  147. dkml-install
  148. dkml-install-installer
  149. dkml-install-runner
  150. dmarc
  151. dns >= "4.4.1"
  152. dns-cli
  153. dns-client >= "4.6.3"
  154. dns-forward-lwt-unix
  155. dns-resolver
  156. dns-server
  157. dns-tsig
  158. dnssd
  159. dnssec < "10.2.4"
  160. docfd >= "13.0.0"
  161. domain-name
  162. dream
  163. dream-pure
  164. duff
  165. dune-deps >= "1.4.0"
  166. dune-release >= "1.0.0"
  167. duration
  168. echo
  169. ecma-regex
  170. eio < "0.12"
  171. eio_linux < "0.12"
  172. eio_windows < "0.12"
  173. emile
  174. encore
  175. eqaf >= "0.5"
  176. equinoxe
  177. equinoxe-cohttp
  178. equinoxe-hlc
  179. ezgzip
  180. ezjsonm
  181. ezjsonm-lwt
  182. ezlua
  183. FPauth
  184. FPauth-core
  185. FPauth-responses
  186. FPauth-strategies
  187. faraday != "0.2.0"
  188. farfadet
  189. fat-filesystem
  190. fehu < "1.0.0~alpha3"
  191. ff
  192. ff-pbt
  193. flex-array
  194. flux
  195. fluxt
  196. forcamla
  197. forester >= "5.0"
  198. fsevents-lwt
  199. functoria
  200. fungi
  201. geojson
  202. geoml >= "0.1.1"
  203. git
  204. git-cohttp
  205. git-cohttp-unix
  206. git-kv >= "0.2.0"
  207. git-mirage
  208. git-net
  209. git-split
  210. git-unix
  211. gitlab-unix
  212. glicko2
  213. gmap
  214. gmocoin
  215. gobba
  216. gpt
  217. graphql
  218. graphql-async
  219. graphql-cohttp >= "0.13.0"
  220. graphql-lwt
  221. graphql_parser != "0.11.0"
  222. graphql_ppx
  223. h1
  224. h1_parser
  225. h2
  226. hacl
  227. hacl-star >= "0.6.0" & < "0.7.2"
  228. hacl_func
  229. hacl_x25519
  230. handlebars-ml >= "0.2.1"
  231. hedgehog-alcotest
  232. highlexer
  233. hkdf
  234. hockmd
  235. html_of_jsx
  236. http < "6.0.0"
  237. http-multipart-formdata < "2.0.0"
  238. httpaf >= "0.2.0"
  239. https-eio
  240. httpun
  241. httpun-ws
  242. hugin < "1.0.0~alpha3"
  243. huml
  244. hvsock
  245. icalendar
  246. idna
  247. imagelib
  248. index
  249. inferno >= "20220603"
  250. influxdb-async
  251. influxdb-lwt
  252. inquire < "0.2.0"
  253. intel_hex >= "0.3"
  254. interval-map
  255. iomux
  256. irmin
  257. irmin-bench
  258. irmin-chunk
  259. irmin-cli
  260. irmin-containers
  261. irmin-fs
  262. irmin-git
  263. irmin-graphql
  264. irmin-pack
  265. irmin-pack-tools
  266. irmin-test < "3.6.1"
  267. irmin-tezos
  268. irmin-unix
  269. irmin-watcher
  270. jekyll-format
  271. jose
  272. json-data-encoding >= "0.9" & < "1.1.1"
  273. json_decoder
  274. jsonfeed
  275. jsonschema-core
  276. jsonschema-validation
  277. jsonxt
  278. junit_alcotest < "2.1.0"
  279. jwto
  280. kafka-eio
  281. kaun < "1.0.0~alpha3"
  282. kdf
  283. ke >= "0.2"
  284. kkmarkdown
  285. kmt
  286. kube
  287. lambda-runtime
  288. lambda_streams
  289. lambda_streams_async
  290. lambdapi
  291. layoutz
  292. letters
  293. liquid_ml >= "0.1.3"
  294. lmdb >= "1.0"
  295. logical
  296. logtk
  297. lp
  298. lp-glpk
  299. lp-glpk-js < "0.5.0"
  300. lp-gurobi < "0.5.0"
  301. lru
  302. lt-code
  303. luv
  304. mbr-format
  305. mdx
  306. mec
  307. mechaml >= "1.2.1"
  308. melange >= "7.0.0-51"
  309. melange-edn >= "0.5.0"
  310. menhir-lsp >= "0.3.3"
  311. menhirformat
  312. merlin = "4.17.1-501"
  313. merlin-lib >= "4.17.1-501"
  314. metrics
  315. mfat
  316. mfetch
  317. miaou-core
  318. middleware
  319. mimic
  320. minicaml = "0.3.1" | >= "0.4"
  321. mirage >= "4.0.0"
  322. mirage-block-partition
  323. mirage-block-ramdisk
  324. mirage-channel >= "4.0.1"
  325. mirage-crypto-ec
  326. mirage-flow-unix
  327. mirage-kv >= "2.0.0"
  328. mirage-kv-mem
  329. mirage-kv-unix >= "3.0.0"
  330. mirage-logs
  331. mirage-nat
  332. mirage-net-unix
  333. mirage-runtime < "4.7.0"
  334. mirage-tc
  335. mjson
  336. mlgpx
  337. mmdb < "0.3.0"
  338. mnd
  339. mqtt
  340. mrmime >= "0.2.0"
  341. msgpck >= "1.6"
  342. mssql
  343. multibase
  344. multihash
  345. multihash-digestif
  346. multipart-form-data
  347. multipart_form
  348. multipart_form-eio
  349. multipart_form-lwt
  350. multipart_form-miou
  351. named-pipe
  352. nanoid
  353. nbd >= "4.0.3"
  354. nbd-tool
  355. neo4j_bolt
  356. neodriver
  357. neodriver_core
  358. neodriver_eio
  359. neodriver_packstream
  360. nloge
  361. nocoiner
  362. noise
  363. non_empty_list
  364. nx < "1.0.0~alpha3"
  365. nx-datasets
  366. nx-text
  367. OCADml >= "0.6.0"
  368. obatcher
  369. object
  370. obs-eio
  371. obs-prometheus-eio
  372. ocaml-ai-sdk
  373. ocaml-index < "5.4.1-503"
  374. ocaml-r >= "0.4.0"
  375. ocaml-version >= "3.5.0"
  376. ocamlformat < "0.25.1"
  377. ocamlformat-lib
  378. ocamlformat-mlx-lib
  379. ocamlformat-rpc < "removed"
  380. ocamline
  381. ocgtk
  382. ochre
  383. ochre-cli
  384. ocluster < "0.3.0"
  385. ocue
  386. odoc < "2.1.1"
  387. oenv >= "0.1.0"
  388. ohex
  389. oidc
  390. opam-0install
  391. opam-0install-cudf >= "0.5.0"
  392. opam-compiler
  393. opam-file-format >= "2.1.1"
  394. opam-repomin
  395. opencage
  396. opentelemetry >= "0.6"
  397. opentelemetry-client
  398. opentelemetry-client-cohttp-eio
  399. opentelemetry-client-cohttp-lwt >= "0.6"
  400. opentelemetry-client-ocurl >= "0.6"
  401. opentelemetry-client-ocurl-lwt
  402. opentelemetry-cohttp-lwt >= "0.6"
  403. opentelemetry-logs
  404. opentelemetry-lwt >= "0.6"
  405. opium
  406. opium-graphql
  407. opium-testing
  408. opium_kernel
  409. orewa
  410. orgeat
  411. ortac-core
  412. ortac-wrapper
  413. osnap < "0.3.0"
  414. osx-acl
  415. osx-attr
  416. osx-cf
  417. osx-fsevents
  418. osx-keychain
  419. osx-membership
  420. osx-mount
  421. osx-xattr
  422. otoggl
  423. owl >= "0.7.0" & != "0.9.0" & != "1.0.0"
  424. owl-base < "0.5.0"
  425. owl-ode >= "0.1.0" & != "0.2.0"
  426. owl-symbolic
  427. parseff
  428. passe
  429. passmaker
  430. patch < "3.0.0~alpha2"
  431. pbkdf
  432. pecu >= "0.2"
  433. pf-qubes
  434. pg_query >= "0.9.6"
  435. pgx
  436. pgx_unix
  437. pgx_value_core
  438. pgx_value_ptime
  439. phylogenetics
  440. piaf
  441. plebeia >= "2.0.0"
  442. polyglot
  443. polynomial
  444. ppx_bin_there
  445. ppx_blob >= "0.3.0"
  446. ppx_deriving_cmdliner
  447. ppx_deriving_ezjsonm
  448. ppx_deriving_qcheck
  449. ppx_deriving_rpc
  450. ppx_deriving_yaml
  451. ppx_ezlua
  452. ppx_inline_alcotest
  453. ppx_marshal
  454. ppx_parser
  455. ppx_protocol_conv
  456. ppx_protocol_conv_json
  457. ppx_protocol_conv_jsonm
  458. ppx_protocol_conv_msgpack
  459. ppx_protocol_conv_xml_light
  460. ppx_protocol_conv_xmlm
  461. ppx_protocol_conv_yaml
  462. ppx_repr
  463. ppx_subliner
  464. ppx_units
  465. ppx_yojson >= "1.1.0"
  466. pratter
  467. prbnmcn-ucb1 >= "0.0.2"
  468. prc
  469. preface
  470. pretty_expressive
  471. prettym
  472. proc-smaps
  473. producer < "0.2.0"
  474. progress
  475. prom
  476. prometheus < "1.2"
  477. prometheus-app
  478. prometheus-eio
  479. prometheus-lwt
  480. prometheus-reporter
  481. protocell
  482. protocol-9p < "0.11.0" | >= "0.11.2"
  483. protocol-9p-unix
  484. proton
  485. psq
  486. public-suffix
  487. pyast
  488. qcaml
  489. qcheck >= "0.25"
  490. qcheck-alcotest
  491. qcheck-core >= "0.25"
  492. qcow-stream >= "0.13.0"
  493. qcow-tool = "0.13.0"
  494. qcow-types = "0.13.0"
  495. query-json
  496. quickjs
  497. quill < "1.0.0~alpha3"
  498. randii
  499. reason-standard
  500. red-black-tree
  501. reparse >= "2.0.0" & < "3.0.0"
  502. reparse-unix < "2.1.0"
  503. resp
  504. resp-unix >= "0.10.0"
  505. resto >= "0.8"
  506. rfc1951 < "1.0.0"
  507. routes < "2.0.0"
  508. rpc
  509. rpclib
  510. rpclib-async
  511. rpclib-lwt
  512. rpmfile < "0.3.0"
  513. rpmfile-eio
  514. rpmfile-unix
  515. rune < "1.0.0~alpha3"
  516. SZXX >= "4.0.0"
  517. saga
  518. salsa20
  519. salsa20-core
  520. sanddb >= "0.2"
  521. scrypt-kdf
  522. secp256k1 >= "0.4.1"
  523. secp256k1-internal
  524. semver >= "0.2.1"
  525. sendmail
  526. sendmail-lwt
  527. sendmail-miou-unix
  528. sendmail-mirage
  529. sendmsg
  530. seqes
  531. server-reason-react
  532. session-cookie
  533. session-cookie-async
  534. session-cookie-lwt
  535. sha256-cng
  536. shakuhachi
  537. sherlodoc
  538. sihl < "0.2.0"
  539. sihl-type
  540. slug
  541. sm
  542. smaws-clients
  543. smaws-lib
  544. smol
  545. smol-helpers
  546. smtml >= "0.30.0"
  547. sodium-fmt
  548. solidity-alcotest
  549. sosie
  550. soteria
  551. sowilo < "1.0.0~alpha3"
  552. spdx_licenses
  553. spectrum >= "0.2.0"
  554. spectrum_capabilities
  555. spectrum_palette_ppx
  556. spectrum_palettes
  557. spectrum_tools
  558. spin >= "0.7.0"
  559. spurs < "0.1.1"
  560. squirrel
  561. ssh-agent
  562. ssl >= "0.6.0"
  563. stem
  564. stramon-lib
  565. stringx
  566. styled-ppx
  567. swapfs
  568. symex >= "0.2"
  569. symphony-orchestrator-tui
  570. synchronizer >= "0.2"
  571. syslog-rfc5424 < "0.2"
  572. talon < "1.0.0~alpha3"
  573. tar-eio >= "3.5.0"
  574. tcpip
  575. tdigest < "2.1.0"
  576. term-indexing
  577. term-tools
  578. termaid
  579. terminal
  580. terminal_size >= "0.1.1"
  581. terminus
  582. terminus-cohttp
  583. terminus-hlc
  584. terml
  585. testo
  586. testo-lwt
  587. textmate-language >= "0.3.0"
  588. textrazor
  589. timedesc
  590. timere
  591. timmy
  592. timmy-jsoo
  593. timmy-lwt
  594. timmy-unix
  595. tls >= "0.12.8"
  596. toc
  597. topojson
  598. topojsone
  599. traits
  600. transept
  601. tsort >= "2.2.0"
  602. tw
  603. twostep
  604. type_eq
  605. type_id
  606. typeid >= "1.0.1"
  607. tyre >= "0.4"
  608. tyxml >= "4.2.0"
  609. tyxml-jsx
  610. tyxml-ppx >= "4.3.0"
  611. tyxml-syntax
  612. ucharset
  613. uecc
  614. ulid
  615. universal-portal
  616. unix-dirent
  617. unix-errno
  618. unix-sys-resource
  619. unix-sys-stat
  620. unix-time
  621. unstrctrd
  622. uring < "0.4"
  623. user-agent-parser
  624. uspf
  625. uspf-lwt
  626. uspf-mirage
  627. uspf-unix
  628. utcp
  629. utop >= "2.13.0"
  630. validate
  631. validator
  632. vercel
  633. vhd-format-lwt >= "0.13.0"
  634. wayland >= "2.0"
  635. wcwidth
  636. websocketaf
  637. wire
  638. x509 >= "0.7.0"
  639. xapi-rrd
  640. xapi-stdext-date
  641. xapi-stdext-encodings
  642. xapi-stdext-std >= "4.16.0"
  643. xgboost
  644. yaml
  645. yaml-sexp
  646. yocaml
  647. yocaml_syndication >= "2.0.0"
  648. yocaml_yaml < "2.0.0"
  649. yojson >= "1.6.0"
  650. yojson-five
  651. yuscii >= "0.3.0"
  652. yuujinchou >= "1.0.0"
  653. zar
  654. zed >= "3.2.2"
  655. zlist < "0.4.0"

Conflicts (1)

  1. result < "1.5"