package tezt

  1. Overview
  2. Docs

Command-line arguments that control the set of tests to run.

val files_to_run : string list

--file

val files_not_to_run : string list

--not-file

val patterns_to_run : Base.rex list

--match

val patterns_not_to_run : Base.rex list

--not-match

val tests_to_run : string list

--title, --test

val tests_not_to_run : string list

--not-title, --not-test

val job : (int * int) option

--job

val skip : int

--skip

val only : int option

--only

val tsl_expression : unit -> TSL_AST.t

Unnamed arguments are conditions expressed in the Test Selection Language.

This returns the conjunction of all such conditions.

This is a function because it should be called just before Clap.close, to follow Clap's rule that named arguments must be defined before unnamed ones (see Clap's readme).