From c0f5a66a9b8dc1673503d1c465c51b2129272488 Mon Sep 17 00:00:00 2001 From: JLKwong Date: Wed, 14 Apr 2021 17:45:03 -0700 Subject: [PATCH 1/2] draft (fixes #2195) --- tests/test.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test.sh b/tests/test.sh index d594ab0204..3abb879cad 100755 --- a/tests/test.sh +++ b/tests/test.sh @@ -44,6 +44,9 @@ case "$1" in ./expandfs* ./h* ./image* ./l* ./m* ./n* \ ./p* ./r* ./temperature* ./timezone* ./usb.bats ./verbose* ./version* ;; + nonrpi) + time bats ./services/*.bats ./magazines/*.bats ./wifi* ./blocker* ./cron* + ;; *) echo "Only 'all', 'services', 'led', 'magazine', 'wifi', 'ap', 'nonet', 'nonetblue' options are supported" exit 1 From c09dba25e5eff1b6733b506f2e6efdb52e149cf4 Mon Sep 17 00:00:00 2001 From: JLKwong Date: Wed, 21 Apr 2021 14:37:13 -0700 Subject: [PATCH 2/2] upgrade test.sh with nonrpi command (fixes #2195) --- tests/test.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test.sh b/tests/test.sh index 3abb879cad..16252978bb 100755 --- a/tests/test.sh +++ b/tests/test.sh @@ -45,7 +45,9 @@ case "$1" in ./p* ./r* ./temperature* ./timezone* ./usb.bats ./verbose* ./version* ;; nonrpi) - time bats ./services/*.bats ./magazines/*.bats ./wifi* ./blocker* ./cron* + time bats ./services/* ./magazines/* ./wifi* ./blocker* ./cron* \ + ./detect.bats ./h* ./image* ./l* ./m* ./networkmode* ./picture* \ + ./reb* ./ren* ./timezone* ./usb.bats ./verbose* ./version* ;; *) echo "Only 'all', 'services', 'led', 'magazine', 'wifi', 'ap', 'nonet', 'nonetblue' options are supported"