From ad2ce452a8c039d09922a662af4f61b6998de566 Mon Sep 17 00:00:00 2001 From: Ana Hobden Date: Wed, 30 Mar 2022 10:42:18 -0700 Subject: [PATCH] Remove dead --workspace flag on cargo pgx test (#520) Signed-off-by: Ana Hobden --- cargo-pgx/src/command/test.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/cargo-pgx/src/command/test.rs b/cargo-pgx/src/command/test.rs index 1a39f47a6..f35402bae 100644 --- a/cargo-pgx/src/command/test.rs +++ b/cargo-pgx/src/command/test.rs @@ -35,9 +35,6 @@ pub(crate) struct Test { /// Path to Cargo.toml #[clap(long, parse(from_os_str))] manifest_path: Option, - /// Test all packages in the workspace - #[clap(long)] - workspace: bool, /// compile for release mode (default is debug) #[clap(env = "PROFILE", long, short)] release: bool,