1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-13 15:23:49 +01:00

free disk

This commit is contained in:
J. Nick Koston
2025-10-10 07:18:51 -10:00
parent 86bfcc3c07
commit d02a5503a8
2 changed files with 13 additions and 5 deletions

View File

@@ -49,7 +49,7 @@ def has_test_files(component_name: str, tests_dir: Path) -> bool:
def create_intelligent_batches(
components: list[str],
tests_dir: Path,
batch_size: int = 15,
batch_size: int = 20,
) -> list[list[str]]:
"""Create batches optimized for component grouping.
@@ -161,8 +161,8 @@ def main() -> int:
"--batch-size",
"-b",
type=int,
default=15,
help="Target batch size (default: 15)",
default=20,
help="Target batch size (default: 20)",
)
parser.add_argument(
"--tests-dir",