Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: Remove 'type_desc_to_yojson' library #1292

Merged
merged 1 commit into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion test/model/semantics/dune
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
(rule
(copy ../../odoc_print/type_desc_to_yojson.ml type_desc_to_yojson.ml))

(library
(name odoc_model_semantics_test)
(package odoc)
Expand All @@ -7,4 +10,4 @@
(>= %{ocaml_version} 4.04.1))
(preprocess
(pps ppx_expect))
(libraries sexplib0 odoc_model type_desc_to_yojson))
(libraries sexplib0 odoc_model odoc_model_desc yojson))
19 changes: 3 additions & 16 deletions test/odoc_print/dune
Original file line number Diff line number Diff line change
@@ -1,25 +1,12 @@
(library
(name type_desc_to_yojson)
(package odoc)
(optional)
(modules type_desc_to_yojson)
(libraries odoc_model_desc yojson))

(executable
(name odoc_print)
(modules odoc_print)
(libraries odoc_odoc type_desc_to_yojson odoc_model_desc compatcmdliner))
(modules odoc_print type_desc_to_yojson)
(libraries odoc_odoc odoc_model_desc yojson compatcmdliner))

(executable
(name print_index)
(modules print_index)
(libraries
odoc_odoc
type_desc_to_yojson
odoc_model_desc
compatcmdliner
yojson
odoc_json_index))
(libraries odoc_odoc odoc_model_desc compatcmdliner yojson odoc_json_index))

(executable
(name occurrences_print)
Expand Down
Loading