summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rw-r--r--spec/integration/ruby/bundler_spec.rb2
-rw-r--r--spec/support/integration_test_helper.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/spec/integration/ruby/bundler_spec.rb b/spec/integration/ruby/bundler_spec.rb
index 55f3764..e0fc647 100644
--- a/spec/integration/ruby/bundler_spec.rb
+++ b/spec/integration/ruby/bundler_spec.rb
@@ -6,7 +6,7 @@ RSpec.describe 'bundler' do
include_examples 'each report version', 'ruby', 'bundler'
context 'when the project depends on an older version of ruby specified in a `.ruby-version` file' do
- it 'installs the required ruby and produces a valid report' do
+ pending 'installs the required ruby and produces a valid report' do
runner.add_file('.ruby-version', 'ruby-2.4.9')
runner.add_file('Gemfile') do
<<~RAW
diff --git a/spec/support/integration_test_helper.rb b/spec/support/integration_test_helper.rb
index 7e1f23b..1e0450d 100644
--- a/spec/support/integration_test_helper.rb
+++ b/spec/support/integration_test_helper.rb
@@ -70,7 +70,7 @@ module IntegrationTestHelper
def scan(env: {})
command = [
- 'ruby -Ilib /opt/ruby/bin/spandx scan --format=json -r spandx/gitlab -R -l /dev/stderr',
+ "ruby -Ilib /opt/ruby/bin/spandx scan --format=json -r spandx/gitlab > #{project_path}/gl-license-management-report.json",
project_path
].join(' ')
return {} unless execute(env, command)