Skip to content

Commit

Permalink
Remove debug group from pipeline test
Browse files Browse the repository at this point in the history
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 <marc.paradise@gmail.com>
  • Loading branch information
marcparadise committed Sep 16, 2022
1 parent d7d64f3 commit 14709ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .expeditor/run_linux_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 2 additions & 1 deletion .expeditor/run_windows_tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ $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
If ($lastexitcode -ne 0) { Exit $lastexitcode }

Write-Output "--- Bundle Execute"

bundle exec rake
bundle exec rake
If ($lastexitcode -ne 0) { Exit $lastexitcode }

0 comments on commit 14709ff

Please sign in to comment.