From a333a5c3c0e8a8c190595db8d8f49049e9d17efc Mon Sep 17 00:00:00 2001 From: Esteve Fernandez Date: Wed, 15 Nov 2023 17:21:50 +0100 Subject: [PATCH] Ignore rosidl_runtime_rs for cargo test --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index f8926abd7..146c29e12 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -104,7 +104,7 @@ jobs: cd $path echo "Running cargo test in $path" # Run cargo test for all features except generate_docs (needed for docs.rs) - if [ "$(basename $path)" = "rclrs" ]; then + if [ "$(basename $path)" = "rosidl_runtime_rs" ] || [ "$(basename $path)" = "rclrs" ]; then cargo test -F default,dyn_msg else cargo test --all-features