Skip to content

Commit

Permalink
Temporarily remove the integration-test command.
Browse files Browse the repository at this point in the history
  • Loading branch information
steelgeek091 committed Jul 8, 2023
1 parent 68c2d3f commit d070ba0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions crates/rooch/src/commands/move_cli/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

use async_trait::async_trait;
use commands::{
build::Build, integration_test::IntegrationTest, new::New, publish::Publish,
build::Build, /* integration_test::IntegrationTest ,*/ new::New, publish::Publish,
run_function::RunFunction, run_view_function::RunViewFunction, unit_test::Test,
};
use move_cli::{
Expand Down Expand Up @@ -42,7 +42,7 @@ pub enum MoveCommand {
Publish(Publish),
Run(RunFunction),
View(RunViewFunction),
IntegrationTest(IntegrationTest),
// IntegrationTest(IntegrationTest),
}

#[async_trait]
Expand Down Expand Up @@ -91,10 +91,12 @@ impl CommandAction<String> for MoveCli {
MoveCommand::Publish(c) => c.execute_serialized().await,
MoveCommand::Run(c) => c.execute_serialized().await,
MoveCommand::View(c) => c.execute_serialized().await,
/*
MoveCommand::IntegrationTest(c) => c
.execute(move_args)
.map(|_| "Success".to_owned())
.map_err(RoochError::from),
*/
}
}
}

0 comments on commit d070ba0

Please sign in to comment.