Skip to content

Commit

Permalink
fix wasm-rpc-stubgen ingteg, reenable JUNIT for it
Browse files Browse the repository at this point in the history
  • Loading branch information
noise64 committed Dec 23, 2024
1 parent bedb848 commit fa73d5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -257,9 +257,8 @@ cargo test --package golem-component-service-base --test tests -- --nocapture --
cargo test --package golem-worker-service-base --test services_tests -- --nocapture --report-time $JUNIT_OPTS
cargo test --package golem-worker-service-base --test api_gateway_end_to_end_tests -- --nocapture --report-time $JUNIT_OPTS
cargo test --package golem-service-base --test integration -- --nocapture --report-time $JUNIT_OPTS
cargo test --package wasm-rpc-stubgen-tests-integration --tests -- --nocapture --test-threads=1 --report-time
cargo test --package wasm-rpc-stubgen-tests-integration --tests -- --nocapture --test-threads=1 --report-time $JUNIT_OPTS
'''
# $JUNIT_OPTS temporarily removed from wasm-rpc-stubgen-tests-integration to help debugging on CI

[tasks.sharding-tests]
description = "Runs sharding integration tests only"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ struct Component;

impl Guest for Component {
fn run() {
let _api = crate::bindings::test::main_client::main_client::Iface1::new(&Uri { value: "TODO".to_string() });
let _api = crate::bindings::test::main_client::api_client::Iface1::new(&Uri { value: "TODO".to_string() });
}
}

Expand Down

0 comments on commit fa73d5e

Please sign in to comment.