Skip to content

Commit

Permalink
set max test failures to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
dwdozier committed Apr 12, 2024
1 parent 1a95949 commit 3ec70a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/harness/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pub const DISPLAY_ENV_CMD: &str = "printenv";
pub const DISPLAY_ENV_CMD: &str = "SET";

pub fn retry_cmd_with_backoff(cmd: &mut Command) -> std::io::Result<ExitStatus> {
const MAX_FAILURES: u32 = 3;
const MAX_FAILURES: u32 = 1;
const BASE_DELAY_SECS: u64 = 2;
let mut failure_count: u32 = 0;
let mut result;
Expand Down

0 comments on commit 3ec70a9

Please sign in to comment.