From d63ba1f5e6919cd14c95f7209c38db0ff0632ce5 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sat, 24 Jan 2026 18:52:34 -0600 Subject: fix(testing): remove obsolete --skip-slow-packages option This flag was removed from archsetup but remained in test scripts. --- scripts/testing/run-test-baremetal.sh | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'scripts/testing/run-test-baremetal.sh') diff --git a/scripts/testing/run-test-baremetal.sh b/scripts/testing/run-test-baremetal.sh index 709f030..c108e6f 100755 --- a/scripts/testing/run-test-baremetal.sh +++ b/scripts/testing/run-test-baremetal.sh @@ -24,7 +24,6 @@ source "$SCRIPT_DIR/lib/validation.sh" # Parse arguments ROLLBACK_FIRST=false ROLLBACK_AFTER=false -SKIP_SLOW_PACKAGES=false TARGET_HOST="" ROOT_PASSWORD="" @@ -38,7 +37,6 @@ usage() { echo "Options:" echo " --rollback-first Roll back to genesis snapshots before running" echo " --rollback-after Roll back to genesis snapshots after test (cleanup)" - echo " --skip-slow-packages Skip slow packages for faster testing" echo " --validate-only Skip archsetup, only run validation checks" echo " --help Show this help" exit 1 @@ -64,10 +62,6 @@ while [[ $# -gt 0 ]]; do ROLLBACK_AFTER=true shift ;; - --skip-slow-packages) - SKIP_SLOW_PACKAGES=true - shift - ;; --validate-only) VALIDATE_ONLY=true shift @@ -173,14 +167,9 @@ if ! $VALIDATE_ONLY; then info "This will take 30-60 minutes" REMOTE_LOG="/tmp/archsetup-test/archsetup-output.log" - ARCHSETUP_ARGS="" - if $SKIP_SLOW_PACKAGES; then - ARCHSETUP_ARGS="--skip-slow-packages" - info "Running with --skip-slow-packages" - fi # Start archsetup in background - ssh_cmd "cd /tmp/archsetup-test && nohup bash archsetup $ARCHSETUP_ARGS > $REMOTE_LOG 2>&1 &" + ssh_cmd "cd /tmp/archsetup-test && nohup bash archsetup > $REMOTE_LOG 2>&1 &" success "ArchSetup started in background" # Poll for completion -- cgit v1.2.3