We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9708458 commit 913fa46Copy full SHA for 913fa46
xtask/src/commands/mod.rs
@@ -1 +1,2 @@
1
pub(crate) mod bindgen;
2
+pub(crate) mod test;
xtask/src/commands/test.rs
@@ -0,0 +1,6 @@
+use tracel_xtask::prelude::*;
+
3
+pub(crate) fn handle_command(mut args: TestCmdArgs) -> anyhow::Result<()> {
4
+ args.no_default_features = true;
5
+ base_commands::test::handle_command(args)
6
+}
xtask/src/main.rs
@@ -17,6 +17,7 @@ fn main() -> anyhow::Result<()> {
17
let args = init_xtask::<Command>()?;
18
match args.command {
19
Command::Bindgen(cmd_args) => commands::bindgen::handle_command(cmd_args),
20
+ Command::Test(cmd_args) => commands::test::handle_command(cmd_args),
21
_ => dispatch_base_commands(args),
22
}?;
23
let duration = start.elapsed();
0 commit comments