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. ozstd
  428. parseff
  429. passe
  430. passmaker
  431. patch < "3.0.0~alpha2"
  432. pbkdf
  433. pecu >= "0.2"
  434. pf-qubes
  435. pg_query >= "0.9.6"
  436. pgx
  437. pgx_unix
  438. pgx_value_core
  439. pgx_value_ptime
  440. phylogenetics
  441. piaf
  442. plebeia >= "2.0.0"
  443. polyglot
  444. polynomial
  445. ppx_bin_there
  446. ppx_blob >= "0.3.0"
  447. ppx_deriving_cmdliner
  448. ppx_deriving_ezjsonm
  449. ppx_deriving_qcheck
  450. ppx_deriving_rpc
  451. ppx_deriving_yaml
  452. ppx_ezlua
  453. ppx_inline_alcotest
  454. ppx_marshal
  455. ppx_parser
  456. ppx_protocol_conv
  457. ppx_protocol_conv_json
  458. ppx_protocol_conv_jsonm
  459. ppx_protocol_conv_msgpack
  460. ppx_protocol_conv_xml_light
  461. ppx_protocol_conv_xmlm
  462. ppx_protocol_conv_yaml
  463. ppx_repr
  464. ppx_subliner
  465. ppx_units
  466. ppx_yojson >= "1.1.0"
  467. pratter
  468. prbnmcn-ucb1 >= "0.0.2"
  469. prc
  470. preface
  471. pretty_expressive
  472. prettym
  473. proc-smaps
  474. producer < "0.2.0"
  475. progress
  476. prom
  477. prometheus < "1.2"
  478. prometheus-app
  479. prometheus-eio
  480. prometheus-lwt
  481. prometheus-reporter
  482. protocell
  483. protocol-9p < "0.11.0" | >= "0.11.2"
  484. protocol-9p-unix
  485. proton
  486. psq
  487. public-suffix
  488. pyast
  489. qcaml
  490. qcheck >= "0.25"
  491. qcheck-alcotest
  492. qcheck-core >= "0.25"
  493. qcow-stream >= "0.13.0"
  494. qcow-tool = "0.13.0"
  495. qcow-types = "0.13.0"
  496. query-json
  497. quickjs
  498. quill < "1.0.0~alpha3"
  499. randii
  500. reason-standard
  501. red-black-tree
  502. reparse >= "2.0.0" & < "3.0.0"
  503. reparse-unix < "2.1.0"
  504. resp
  505. resp-unix >= "0.10.0"
  506. resto >= "0.8"
  507. rfc1951 < "1.0.0"
  508. routes < "2.0.0"
  509. rpc
  510. rpclib
  511. rpclib-async
  512. rpclib-lwt
  513. rpmfile < "0.3.0"
  514. rpmfile-eio
  515. rpmfile-unix
  516. rune < "1.0.0~alpha3"
  517. SZXX >= "4.0.0"
  518. saga
  519. salsa20
  520. salsa20-core
  521. sanddb >= "0.2"
  522. scrypt-kdf
  523. secp256k1 >= "0.4.1"
  524. secp256k1-internal
  525. semver >= "0.2.1"
  526. sendmail
  527. sendmail-lwt
  528. sendmail-miou-unix
  529. sendmail-mirage
  530. sendmsg
  531. seqes
  532. server-reason-react
  533. session-cookie
  534. session-cookie-async
  535. session-cookie-lwt
  536. sha256-cng
  537. shakuhachi
  538. sherlodoc
  539. sihl < "0.2.0"
  540. sihl-type
  541. slug
  542. sm
  543. smaws-clients
  544. smaws-lib
  545. smol
  546. smol-helpers
  547. smtml >= "0.30.0"
  548. sodium-fmt
  549. solidity-alcotest
  550. sosie
  551. soteria
  552. sowilo < "1.0.0~alpha3"
  553. spdx_licenses
  554. spectrum >= "0.2.0"
  555. spectrum_capabilities
  556. spectrum_palette_ppx
  557. spectrum_palettes
  558. spectrum_tools
  559. spin >= "0.7.0"
  560. spurs < "0.1.1"
  561. squirrel
  562. ssh-agent
  563. ssl >= "0.6.0"
  564. stem
  565. stramon-lib
  566. stringx
  567. styled-ppx
  568. swapfs
  569. symex >= "0.2"
  570. symphony-orchestrator-tui
  571. synchronizer >= "0.2"
  572. syslog-rfc5424 < "0.2"
  573. talon < "1.0.0~alpha3"
  574. tar-eio >= "3.5.0"
  575. tcpip
  576. tdigest < "2.1.0"
  577. term-indexing
  578. term-tools
  579. termaid
  580. terminal
  581. terminal_size >= "0.1.1"
  582. terminus
  583. terminus-cohttp
  584. terminus-hlc
  585. terml
  586. testo
  587. testo-lwt
  588. textmate-language >= "0.3.0"
  589. textrazor
  590. timedesc
  591. timere
  592. timmy
  593. timmy-jsoo
  594. timmy-lwt
  595. timmy-unix
  596. tls >= "0.12.8"
  597. toc
  598. topojson
  599. topojsone
  600. traits
  601. transept
  602. tsort >= "2.2.0"
  603. tw
  604. twostep
  605. type_eq
  606. type_id
  607. typeid >= "1.0.1"
  608. tyre >= "0.4"
  609. tyxml >= "4.2.0"
  610. tyxml-jsx
  611. tyxml-ppx >= "4.3.0"
  612. tyxml-syntax
  613. ucharset
  614. uecc
  615. ulid
  616. universal-portal
  617. unix-dirent
  618. unix-errno
  619. unix-sys-resource
  620. unix-sys-stat
  621. unix-time
  622. unstrctrd
  623. uring < "0.4"
  624. user-agent-parser
  625. uspf
  626. uspf-lwt
  627. uspf-mirage
  628. uspf-unix
  629. utcp
  630. utop >= "2.13.0"
  631. validate
  632. validator
  633. vercel
  634. vhd-format-lwt >= "0.13.0"
  635. wayland >= "2.0"
  636. wcwidth
  637. websocketaf
  638. wire
  639. x509 >= "0.7.0"
  640. xapi-rrd
  641. xapi-stdext-date
  642. xapi-stdext-encodings
  643. xapi-stdext-std >= "4.16.0"
  644. xgboost
  645. yaml
  646. yaml-sexp
  647. yocaml
  648. yocaml_syndication >= "2.0.0"
  649. yocaml_yaml < "2.0.0"
  650. yojson >= "1.6.0"
  651. yojson-five
  652. yuscii >= "0.3.0"
  653. yuujinchou >= "1.0.0"
  654. zar
  655. zed >= "3.2.2"
  656. zlist < "0.4.0"

Conflicts (1)

  1. result < "1.5"