mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-09-23 13:16:27 +00:00
Update emojis
This commit is contained in:
@ -64,12 +64,13 @@ async fn run_inner(args: TestDeriveArgs) -> anyhow::Result<()> {
|
|||||||
|
|
||||||
let name = workload.name.clone();
|
let name = workload.name.clone();
|
||||||
match workload.run(&args, &assets_client, &meili_client, asset_folder).await {
|
match workload.run(&args, &assets_client, &meili_client, asset_folder).await {
|
||||||
Ok(_) => {
|
Ok(_) => match args.add_missing_responses || args.update_responses {
|
||||||
println!("✅ Workload {name} completed successfully");
|
true => println!("🛠️ Workload {name} was updated"),
|
||||||
|
false => println!("✅ Workload {name} passed"),
|
||||||
}
|
}
|
||||||
Err(error) => {
|
Err(error) => {
|
||||||
println!("❌ Workload {name} failed: {error}");
|
println!("❌ Workload {name} failed: {error}");
|
||||||
println!("Is this intentional? If so, rerun with --update-responses to update the workload files.");
|
println!("💡 Is this intentional? If so, rerun with --update-responses to update the workload files.");
|
||||||
return Err(error);
|
return Err(error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user