Skip to content

Commit

Permalink
Bump stack size for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed Mar 27, 2024
1 parent 2e87a85 commit 5bca934
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/uv/tests/pip_install.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ fn command_without_exclude_newer(context: &TestContext) -> Command {
if cfg!(all(windows, debug_assertions)) {
// TODO(konstin): Reduce stack usage in debug mode enough that the tests pass with the
// default windows stack of 1MB
command.env("UV_STACK_SIZE", (2 * 1024 * 1024).to_string());
command.env("UV_STACK_SIZE", (3 * 1024 * 1024).to_string());
}

command
Expand Down

0 comments on commit 5bca934

Please sign in to comment.