mirror of
https://github.com/ocaml-tracing/ocaml-opentelemetry.git
synced 2026-03-07 18:37:56 -05:00
tests: Add every test-dep to every package
This commit is contained in:
parent
fb1133be3d
commit
eb5b6dffaf
6 changed files with 52 additions and 4 deletions
44
dune-project
44
dune-project
|
|
@ -30,6 +30,14 @@
|
|||
ambient-context
|
||||
(odoc :with-doc)
|
||||
(alcotest :with-test)
|
||||
(opentelemetry-client-cohttp-lwt
|
||||
(and
|
||||
:with-test
|
||||
(= :version)))
|
||||
(opentelemetry-client-ocurl
|
||||
(and
|
||||
:with-test
|
||||
(= :version)))
|
||||
(pbrt
|
||||
(>= 2.3))
|
||||
(ocaml-lsp-server :with-dev-setup)
|
||||
|
|
@ -61,7 +69,16 @@
|
|||
(lwt
|
||||
(>= "5.3"))
|
||||
(lwt_ppx
|
||||
(>= "2.0")))
|
||||
(>= "2.0"))
|
||||
(alcotest :with-test)
|
||||
(opentelemetry-client-cohttp-lwt
|
||||
(and
|
||||
:with-test
|
||||
(= :version)))
|
||||
(opentelemetry-client-ocurl
|
||||
(and
|
||||
:with-test
|
||||
(= :version))))
|
||||
(tags
|
||||
(instrumentation tracing opentelemetry datadog lwt)))
|
||||
|
||||
|
|
@ -81,7 +98,12 @@
|
|||
(odoc :with-doc)
|
||||
(ezcurl
|
||||
(>= 0.2.3))
|
||||
ocurl)
|
||||
ocurl
|
||||
(alcotest :with-test)
|
||||
(opentelemetry-client-cohttp-lwt
|
||||
(and
|
||||
:with-test
|
||||
(= :version))))
|
||||
(synopsis "Collector client for opentelemetry, using http + ezcurl"))
|
||||
|
||||
(package
|
||||
|
|
@ -97,7 +119,16 @@
|
|||
(lwt
|
||||
(>= "5.3"))
|
||||
(cohttp-lwt
|
||||
(>= "4.0.0")))
|
||||
(>= "4.0.0"))
|
||||
(alcotest :with-test)
|
||||
(opentelemetry-client-cohttp-lwt
|
||||
(and
|
||||
:with-test
|
||||
(= :version)))
|
||||
(opentelemetry-client-ocurl
|
||||
(and
|
||||
:with-test
|
||||
(= :version))))
|
||||
(synopsis "Opentelemetry tracing for Cohttp HTTP servers"))
|
||||
|
||||
(package
|
||||
|
|
@ -118,5 +149,10 @@
|
|||
(lwt_ppx
|
||||
(>= "2.0"))
|
||||
cohttp-lwt
|
||||
cohttp-lwt-unix)
|
||||
cohttp-lwt-unix
|
||||
(alcotest :with-test)
|
||||
(opentelemetry-client-ocurl
|
||||
(and
|
||||
:with-test
|
||||
(= :version))))
|
||||
(synopsis "Collector client for opentelemetry, using cohttp + lwt"))
|
||||
|
|
|
|||
|
|
@ -22,6 +22,8 @@ depends: [
|
|||
"lwt_ppx" {>= "2.0"}
|
||||
"cohttp-lwt"
|
||||
"cohttp-lwt-unix"
|
||||
"alcotest" {with-test}
|
||||
"opentelemetry-client-ocurl" {with-test & = version}
|
||||
]
|
||||
build: [
|
||||
["dune" "subst"] {dev}
|
||||
|
|
|
|||
|
|
@ -20,6 +20,8 @@ depends: [
|
|||
"odoc" {with-doc}
|
||||
"ezcurl" {>= "0.2.3"}
|
||||
"ocurl"
|
||||
"alcotest" {with-test}
|
||||
"opentelemetry-client-cohttp-lwt" {with-test & = version}
|
||||
]
|
||||
build: [
|
||||
["dune" "subst"] {dev}
|
||||
|
|
|
|||
|
|
@ -19,6 +19,9 @@ depends: [
|
|||
"odoc" {with-doc}
|
||||
"lwt" {>= "5.3"}
|
||||
"cohttp-lwt" {>= "4.0.0"}
|
||||
"alcotest" {with-test}
|
||||
"opentelemetry-client-cohttp-lwt" {with-test & = version}
|
||||
"opentelemetry-client-ocurl" {with-test & = version}
|
||||
]
|
||||
build: [
|
||||
["dune" "subst"] {dev}
|
||||
|
|
|
|||
|
|
@ -21,6 +21,9 @@ depends: [
|
|||
"odoc" {with-doc}
|
||||
"lwt" {>= "5.3"}
|
||||
"lwt_ppx" {>= "2.0"}
|
||||
"alcotest" {with-test}
|
||||
"opentelemetry-client-cohttp-lwt" {with-test & = version}
|
||||
"opentelemetry-client-ocurl" {with-test & = version}
|
||||
]
|
||||
build: [
|
||||
["dune" "subst"] {dev}
|
||||
|
|
|
|||
|
|
@ -19,6 +19,8 @@ depends: [
|
|||
"ambient-context"
|
||||
"odoc" {with-doc}
|
||||
"alcotest" {with-test}
|
||||
"opentelemetry-client-cohttp-lwt" {with-test & = version}
|
||||
"opentelemetry-client-ocurl" {with-test & = version}
|
||||
"pbrt" {>= "2.3"}
|
||||
"ocaml-lsp-server" {with-dev-setup}
|
||||
"ocamlformat" {with-dev-setup & >= "0.24" & < "0.25"}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue