Skip to content

Commit

Permalink
Merge pull request #719 from scotje/maint_package_test_single_file
Browse files Browse the repository at this point in the history
(MAINT) Allow use of RSPEC_PATTERN env var when running package tests
  • Loading branch information
glennsarti authored Aug 1, 2019
2 parents 7762cd2 + 6d523cf commit c60eea9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package-testing/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ namespace :acceptance do
desc 'Run acceptance tests against a pdk package'
RSpec::Core::RakeTask.new(:package) do |t|
t.rspec_opts = ['--format documentation']
t.pattern = 'spec/package/**/*_spec.rb'
t.pattern = ENV['RSPEC_PATTERN'] || 'spec/package/**/*_spec.rb'
end
task package: [:hostgen]

Expand Down

0 comments on commit c60eea9

Please sign in to comment.