https://gitlab.com/tezos/tezos
Raw File
Tip revision: 41fa79b34715a811fe2a67bdc8da58546a3f9c0d authored by Arvid Jakobsson on 25 July 2023, 14:21:33 UTC
Script for spamming pipelines
Tip revision: 41fa79b
dune
; This file was automatically generated, do not edit.
; Edit file manifest/main.ml instead.

(library
 (name src_lib_workers_test_tezt_lib)
 (instrumentation (backend bisect_ppx))
 (libraries
  tezt.core
  tezos-stdlib
  tezos-stdlib-unix
  tezos-base
  tezos-workers
  tezos-test-helpers
  tezos-base-test-helpers
  octez-alcotezt)
 (library_flags (:standard -linkall))
 (flags
  (:standard)
  -open Tezt_core
  -open Tezt_core.Base
  -open Tezos_stdlib
  -open Tezos_stdlib_unix
  -open Tezos_base
  -open Tezos_base.TzPervasives
  -open Tezos_base.Worker_types
  -open Tezos_workers
  -open Tezos_test_helpers
  -open Tezos_base_test_helpers
  -open Octez_alcotezt)
 (modules mocked_worker test_workers_unit))

(executable
 (name main)
 (instrumentation (backend bisect_ppx --bisect-sigterm))
 (libraries
  src_lib_workers_test_tezt_lib
  tezt)
 (modules main))

(rule
 (alias runtest)
 (package tezos-workers)
 (enabled_if (<> false %{env:RUNTEZTALIAS=true}))
 (action (run %{dep:./main.exe})))

(rule
 (targets main.ml)
 (action (with-stdout-to %{targets} (echo "let () = Tezt.Test.run ()"))))
back to top