play more short games for regression test

This commit is contained in:
Max Känner 2024-10-03 18:52:17 +02:00
parent 0d740621c6
commit 27040b66ee

View File

@ -159,13 +159,13 @@ fn regression() -> Result<(), DynError> {
let (won, games) = res?; let (won, games) = res?;
println!( println!(
"\nThe local snake has won {won}/{games} games ({}%)", "\nThe local snake has won {won}/{games} games ({}%)",
won * 100 / games (won + games / 200) * 100 / games
); );
Ok(()) Ok(())
} }
fn try_regression() -> Result<(usize, usize), DynError> { fn try_regression() -> Result<(usize, usize), DynError> {
const GAMES: usize = 100; const GAMES: usize = 1000;
// limit the parallelism // limit the parallelism
rayon::ThreadPoolBuilder::new() rayon::ThreadPoolBuilder::new()
.num_threads(std::thread::available_parallelism()?.get() / 3) .num_threads(std::thread::available_parallelism()?.get() / 3)
@ -184,6 +184,8 @@ fn try_regression() -> Result<(usize, usize), DynError> {
"11", "11",
"-H", "-H",
"11", "11",
"--timeout",
"50",
"--name", "--name",
"local", "local",
"--url", "--url",
@ -246,6 +248,10 @@ fn run_production(port: u16) -> Result<Child, DynError> {
let mut snake = Command::new("docker") let mut snake = Command::new("docker")
.args([ .args([
"run", "run",
"--name",
"battlesnake-regression",
"--init",
"--replace",
"--env", "--env",
"RUST_LOG=error", "RUST_LOG=error",
"--env", "--env",