From 3eb4a8450d759bc4858f17a5a40cc8ce39c07e20 Mon Sep 17 00:00:00 2001 From: Charlotte Meyer Date: Mon, 16 Jan 2023 15:35:39 +0100 Subject: [PATCH] test: disable unit tests Signed-off-by: Charlotte Meyer --- crates/oyster_builtin_proc/Cargo.toml | 1 + crates/oyster_lineedit/Cargo.toml | 1 + crates/oyster_parser/Cargo.toml | 1 + crates/oyster_runtime/Cargo.toml | 1 + 4 files changed, 4 insertions(+) diff --git a/crates/oyster_builtin_proc/Cargo.toml b/crates/oyster_builtin_proc/Cargo.toml index a2ebdbc..c7edf8a 100644 --- a/crates/oyster_builtin_proc/Cargo.toml +++ b/crates/oyster_builtin_proc/Cargo.toml @@ -7,6 +7,7 @@ license.workspace = true [lib] doctest = false proc-macro = true +test = false [dependencies] darling = "~0.14.1" diff --git a/crates/oyster_lineedit/Cargo.toml b/crates/oyster_lineedit/Cargo.toml index 0e20121..c541010 100644 --- a/crates/oyster_lineedit/Cargo.toml +++ b/crates/oyster_lineedit/Cargo.toml @@ -6,3 +6,4 @@ license.workspace = true [lib] doctest = false +test = false diff --git a/crates/oyster_parser/Cargo.toml b/crates/oyster_parser/Cargo.toml index c7b6343..a34f96a 100644 --- a/crates/oyster_parser/Cargo.toml +++ b/crates/oyster_parser/Cargo.toml @@ -6,6 +6,7 @@ license.workspace = true [lib] doctest = false +test = false [dependencies] thiserror = "^1.0.35" diff --git a/crates/oyster_runtime/Cargo.toml b/crates/oyster_runtime/Cargo.toml index b3880aa..a9dc9a5 100644 --- a/crates/oyster_runtime/Cargo.toml +++ b/crates/oyster_runtime/Cargo.toml @@ -6,6 +6,7 @@ license.workspace = true [lib] doctest = false +test = false [dependencies] oyster_builtin_proc = { version = "0.0.0", path = "../oyster_builtin_proc" }