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
|
ambient-context
|
||||||
(odoc :with-doc)
|
(odoc :with-doc)
|
||||||
(alcotest :with-test)
|
(alcotest :with-test)
|
||||||
|
(opentelemetry-client-cohttp-lwt
|
||||||
|
(and
|
||||||
|
:with-test
|
||||||
|
(= :version)))
|
||||||
|
(opentelemetry-client-ocurl
|
||||||
|
(and
|
||||||
|
:with-test
|
||||||
|
(= :version)))
|
||||||
(pbrt
|
(pbrt
|
||||||
(>= 2.3))
|
(>= 2.3))
|
||||||
(ocaml-lsp-server :with-dev-setup)
|
(ocaml-lsp-server :with-dev-setup)
|
||||||
|
|
@ -61,7 +69,16 @@
|
||||||
(lwt
|
(lwt
|
||||||
(>= "5.3"))
|
(>= "5.3"))
|
||||||
(lwt_ppx
|
(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
|
(tags
|
||||||
(instrumentation tracing opentelemetry datadog lwt)))
|
(instrumentation tracing opentelemetry datadog lwt)))
|
||||||
|
|
||||||
|
|
@ -81,7 +98,12 @@
|
||||||
(odoc :with-doc)
|
(odoc :with-doc)
|
||||||
(ezcurl
|
(ezcurl
|
||||||
(>= 0.2.3))
|
(>= 0.2.3))
|
||||||
ocurl)
|
ocurl
|
||||||
|
(alcotest :with-test)
|
||||||
|
(opentelemetry-client-cohttp-lwt
|
||||||
|
(and
|
||||||
|
:with-test
|
||||||
|
(= :version))))
|
||||||
(synopsis "Collector client for opentelemetry, using http + ezcurl"))
|
(synopsis "Collector client for opentelemetry, using http + ezcurl"))
|
||||||
|
|
||||||
(package
|
(package
|
||||||
|
|
@ -97,7 +119,16 @@
|
||||||
(lwt
|
(lwt
|
||||||
(>= "5.3"))
|
(>= "5.3"))
|
||||||
(cohttp-lwt
|
(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"))
|
(synopsis "Opentelemetry tracing for Cohttp HTTP servers"))
|
||||||
|
|
||||||
(package
|
(package
|
||||||
|
|
@ -118,5 +149,10 @@
|
||||||
(lwt_ppx
|
(lwt_ppx
|
||||||
(>= "2.0"))
|
(>= "2.0"))
|
||||||
cohttp-lwt
|
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"))
|
(synopsis "Collector client for opentelemetry, using cohttp + lwt"))
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,8 @@ depends: [
|
||||||
"lwt_ppx" {>= "2.0"}
|
"lwt_ppx" {>= "2.0"}
|
||||||
"cohttp-lwt"
|
"cohttp-lwt"
|
||||||
"cohttp-lwt-unix"
|
"cohttp-lwt-unix"
|
||||||
|
"alcotest" {with-test}
|
||||||
|
"opentelemetry-client-ocurl" {with-test & = version}
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
["dune" "subst"] {dev}
|
["dune" "subst"] {dev}
|
||||||
|
|
|
||||||
|
|
@ -20,6 +20,8 @@ depends: [
|
||||||
"odoc" {with-doc}
|
"odoc" {with-doc}
|
||||||
"ezcurl" {>= "0.2.3"}
|
"ezcurl" {>= "0.2.3"}
|
||||||
"ocurl"
|
"ocurl"
|
||||||
|
"alcotest" {with-test}
|
||||||
|
"opentelemetry-client-cohttp-lwt" {with-test & = version}
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
["dune" "subst"] {dev}
|
["dune" "subst"] {dev}
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,9 @@ depends: [
|
||||||
"odoc" {with-doc}
|
"odoc" {with-doc}
|
||||||
"lwt" {>= "5.3"}
|
"lwt" {>= "5.3"}
|
||||||
"cohttp-lwt" {>= "4.0.0"}
|
"cohttp-lwt" {>= "4.0.0"}
|
||||||
|
"alcotest" {with-test}
|
||||||
|
"opentelemetry-client-cohttp-lwt" {with-test & = version}
|
||||||
|
"opentelemetry-client-ocurl" {with-test & = version}
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
["dune" "subst"] {dev}
|
["dune" "subst"] {dev}
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,9 @@ depends: [
|
||||||
"odoc" {with-doc}
|
"odoc" {with-doc}
|
||||||
"lwt" {>= "5.3"}
|
"lwt" {>= "5.3"}
|
||||||
"lwt_ppx" {>= "2.0"}
|
"lwt_ppx" {>= "2.0"}
|
||||||
|
"alcotest" {with-test}
|
||||||
|
"opentelemetry-client-cohttp-lwt" {with-test & = version}
|
||||||
|
"opentelemetry-client-ocurl" {with-test & = version}
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
["dune" "subst"] {dev}
|
["dune" "subst"] {dev}
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,8 @@ depends: [
|
||||||
"ambient-context"
|
"ambient-context"
|
||||||
"odoc" {with-doc}
|
"odoc" {with-doc}
|
||||||
"alcotest" {with-test}
|
"alcotest" {with-test}
|
||||||
|
"opentelemetry-client-cohttp-lwt" {with-test & = version}
|
||||||
|
"opentelemetry-client-ocurl" {with-test & = version}
|
||||||
"pbrt" {>= "2.3"}
|
"pbrt" {>= "2.3"}
|
||||||
"ocaml-lsp-server" {with-dev-setup}
|
"ocaml-lsp-server" {with-dev-setup}
|
||||||
"ocamlformat" {with-dev-setup & >= "0.24" & < "0.25"}
|
"ocamlformat" {with-dev-setup & >= "0.24" & < "0.25"}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue