Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/scripts/matrices.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ def main():
name += os_str

flags += " --no-fail-fast"
flags += " --no-capture"

obj = Expanded(
name=name,
Expand Down
2 changes: 1 addition & 1 deletion crates/test-utils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ pub fn init_tracing() {
fn env_filter() -> tracing_subscriber::EnvFilter {
const DEFAULT_DIRECTIVES: &[&str] = &include!("../../cli/src/utils/default_directives.txt");
let mut filter = tracing_subscriber::EnvFilter::builder()
.with_default_directive("foundry_test_utils=debug".parse().unwrap())
.with_default_directive("debug".parse().unwrap())
.from_env_lossy();
for &directive in DEFAULT_DIRECTIVES {
filter = filter.add_directive(directive.parse().unwrap());
Expand Down
4 changes: 2 additions & 2 deletions crates/test-utils/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ impl ExtTester {
}
}
Err(e) => {
eprintln!("\n\n{install_cmd:?}: {e}");
test_debug!("\n\n{install_cmd:?}: {e}");
}
}
}
Expand All @@ -220,7 +220,7 @@ impl ExtTester {
pub fn run(&self) {
// Skip fork tests if the RPC url is not set.
if self.fork_block.is_some() && std::env::var_os("ETH_RPC_URL").is_none() {
eprintln!("ETH_RPC_URL is not set; skipping");
test_debug!("ETH_RPC_URL is not set; skipping");
return;
}

Expand Down
Loading