Skip to content

Commit

Permalink
Merge pull request #277 from ifad/chore/fix-spec-output
Browse files Browse the repository at this point in the history
Fix spec output on CI
  • Loading branch information
tagliala authored Mar 29, 2024
2 parents 19641c4 + 40d24a2 commit f5468f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ require 'bundler/gem_tasks'
# RSpec
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new do |spec|
spec.rspec_opts = '-f doc'
spec.rspec_opts = '-f progress' if ENV['CI']
end
task default: ['testapp:create', :spec]

Expand All @@ -16,6 +16,7 @@ namespace :testapp do
desc 'Create a dummy rails application for testing in /tmp'
task :create do
options = %w[
-q
--skip-action-cable
--skip-action-mailer
--skip-action-text
Expand Down

0 comments on commit f5468f0

Please sign in to comment.