Module Autofonce_lib.Filter

type args = {
  1. mutable arg_filter : bool;
  2. mutable arg_failures : string option;
  3. mutable arg_exec_after : int;
  4. mutable arg_exec_before : int;
  5. mutable arg_tests_ids : (int * int) list;
  6. mutable arg_tests_keywords : string list;
  7. mutable arg_tests_nokeywords : string list;
  8. mutable arg_only_failed : bool;
  9. mutable arg_all_keywords : bool;
}
val select_tests : args:args -> ?state:Types.state -> (Types.test -> unit) -> Types.suite -> unit
val args : unit -> Ezcmd.V2.EZCMD.TYPES.arg_list * (unit -> args)