Skip to content

Commit

Permalink
Not all specs are enabled since the move to monogem (#7559)
Browse files Browse the repository at this point in the history
* Re-enable all specs (after move to monogem)

* Fix action tests when third party gem isn't installed
  • Loading branch information
lacostej authored and KrauseFx committed Dec 17, 2016
1 parent 8b4565c commit b1800cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ task :rubygems_admins do
end

task :test_all do
sh "rspec --pattern */spec/*_spec.rb"
sh "rspec --pattern ./**/*_spec.rb"
end

# Overwrite the default rake task
Expand Down
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ dependencies:
- bundle install --jobs=4 --retry=3
test:
override:
- bundle exec rspec --pattern */spec/*_spec.rb -r rspec_junit_formatter --format progress --format RspecJunitFormatter -o $CIRCLE_TEST_REPORTS/rspec/junit.xml
- bundle exec rspec --pattern ./**/*_spec.rb -r rspec_junit_formatter --format progress --format RspecJunitFormatter -o $CIRCLE_TEST_REPORTS/rspec/junit.xml
- bundle exec rubocop
2 changes: 1 addition & 1 deletion fastlane/lib/fastlane/fastlane_require.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def install_gem_if_needed(gem_name: nil, require_gem: true)
UI.important("")
UI.command_output("gem \"#{gem_name}\"")
UI.important("")
UI.user_error!("Add 'gem \"#{gem_name}\"' to your Gemfile and restart fastlane")
UI.user_error!("Add 'gem \"#{gem_name}\"' to your Gemfile and restart fastlane") unless Helper.test?
end

require "rubygems/command_manager"
Expand Down

0 comments on commit b1800cf

Please sign in to comment.