We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42bf300 commit 71e3384Copy full SHA for 71e3384
1 file changed
src/exec/mod.rs
@@ -5,6 +5,7 @@ use crate::executor;
5
use crate::prelude::*;
6
use crate::project_config::ProjectConfig;
7
use crate::project_config::merger::ConfigMerger;
8
+use crate::run::show_banner;
9
use crate::run::uploader::UploadResult;
10
use clap::Args;
11
use std::path::Path;
@@ -96,6 +97,11 @@ pub async fn execute_with_harness(
96
97
setup_cache_dir: Option<&Path>,
98
) -> Result<()> {
99
let mut execution_context = executor::ExecutionContext::try_from((config, codspeed_config))?;
100
+
101
+ if execution_context.is_local() {
102
+ show_banner();
103
+ }
104
105
debug!("config: {:#?}", execution_context.config);
106
let executor = executor::get_executor_from_mode(
107
&execution_context.config.mode,
0 commit comments