Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .config/nextest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ test-threads = 4
# CI profile with retries for flaky tests
retries = 1
test-threads = 2
slow-timeout = { period = "60s", terminate-after = 2 }
slow-timeout = { period = "180s", terminate-after = 2 }

# Provide more detailed output in CI
success-output = "immediate"
Expand Down
6 changes: 3 additions & 3 deletions crates/cargo-lambda-metadata/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ mod tests {

#[test]
fn test_load_concurrency_from_metadata() {
let metadata = load_metadata(fixture_metadata("single-binary-package")).unwrap();
let metadata = load_metadata(fixture_metadata("single-binary-package"), None).unwrap();
let config = load_config_without_cli_flags(&metadata, &ConfigOptions::default()).unwrap();

assert_eq!(
Expand All @@ -566,7 +566,7 @@ mod tests {

#[test]
fn test_concurrency_cli_override() {
let metadata = load_metadata(fixture_metadata("single-binary-package")).unwrap();
let metadata = load_metadata(fixture_metadata("single-binary-package"), None).unwrap();

let mut watch = Watch::default();
watch.concurrency = 10;
Expand All @@ -591,7 +591,7 @@ mod tests {
..Default::default()
};

let metadata = load_metadata(fixture_metadata("workspace-package")).unwrap();
let metadata = load_metadata(fixture_metadata("workspace-package"), None).unwrap();
let config = load_config_without_cli_flags(&metadata, &options).unwrap();

assert_eq!(
Expand Down
Loading