From 14709ff910cc8f1e8dba734a99d8da17f28495cc Mon Sep 17 00:00:00 2001 From: "Marc A. Paradise" Date: Fri, 16 Sep 2022 13:54:22 -0400 Subject: [PATCH] Remove debug group from pipeline test pry-byebug is not supported on all platforms, and is also not necessary for running pipeline tests. Excluding gem group 'debug' from tests prevents failures related to unsupported platforms. Signed-off-by: Marc A. Paradise --- .expeditor/run_linux_tests.sh | 1 + .expeditor/run_windows_tests.ps1 | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.expeditor/run_linux_tests.sh b/.expeditor/run_linux_tests.sh index fc2f6b2b..e8dc6be7 100755 --- a/.expeditor/run_linux_tests.sh +++ b/.expeditor/run_linux_tests.sh @@ -9,6 +9,7 @@ export LANG=C.UTF-8 LANGUAGE=C.UTF-8 echo "--- bundle install" bundle config --local path vendor/bundle +bundle config --local without debug bundle install --jobs=7 --retry=3 echo "+++ bundle exec task" diff --git a/.expeditor/run_windows_tests.ps1 b/.expeditor/run_windows_tests.ps1 index c37728bd..87a60f7a 100644 --- a/.expeditor/run_windows_tests.ps1 +++ b/.expeditor/run_windows_tests.ps1 @@ -5,6 +5,7 @@ $ErrorActionPreference = "Stop" Write-Output "--- Bundle install" bundle config --local path vendor/bundle +bundle config --local without debug If ($lastexitcode -ne 0) { Exit $lastexitcode } bundle install --jobs=7 --retry=3 @@ -12,5 +13,5 @@ If ($lastexitcode -ne 0) { Exit $lastexitcode } Write-Output "--- Bundle Execute" -bundle exec rake +bundle exec rake If ($lastexitcode -ne 0) { Exit $lastexitcode }