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

Duplicated tests for stubless-rpc #1188

Merged
merged 1 commit into from
Dec 16, 2024
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
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ testcontainers-modules = { version = "0.11.4", features = [
"redis",
"minio",
] }
test-r = { version = "1.1.0", default-features = true }
test-r = { version = "1.2.0", default-features = true }
thiserror = "2.0.6"
tokio = { version = "1.42", features = [
"macros",
Expand Down
6 changes: 6 additions & 0 deletions golem-worker-executor-base/tests/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,13 @@ pub mod keyvalue;
pub mod measure_test_component_mem;
pub mod observability;
pub mod rust_rpc;
pub mod rust_rpc_stubless;
pub mod scalability;
pub mod transactions;
pub mod ts_rpc1;
pub mod ts_rpc1_stubless;
pub mod ts_rpc2;
pub mod ts_rpc2_stubless;
pub mod wasi;

test_r::enable!();
Expand All @@ -76,14 +79,17 @@ tag_suite!(wasi, group3);
tag_suite!(scalability, group4);
tag_suite!(hot_update, group4);
tag_suite!(rust_rpc, group4);
tag_suite!(rust_rpc_stubless, group4);

tag_suite!(guest_languages2, group5);

tag_suite!(ts_rpc1, group6);
tag_suite!(ts_rpc1_stubless, group6);

tag_suite!(guest_languages3, group7);

tag_suite!(ts_rpc2, group8);
tag_suite!(ts_rpc2_stubless, group8);

#[derive(Clone)]
pub struct WorkerExecutorPerTestDependencies {
Expand Down
Loading