Skip to content

Commit

Permalink
Run RSpec and Cucumber suites by default.
Browse files Browse the repository at this point in the history
- Previously we only ran RSpec, yet we have a reasonably sized Cucumber suite that could get overlooked by contributors.
- Our contributors.md file suggests the default rake task runs our full test suite, this change helps reinforce that idea.
  • Loading branch information
ecnalyr committed Dec 7, 2016
1 parent 6859159 commit 3d99aa6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,13 @@ require "rspec/core/rake_task"
desc "Run all the tests in spec"
RSpec::Core::RakeTask.new(:spec)

desc "Default: run tests"
task default: :spec

using_git = File.exist?(File.expand_path('../.git/', __FILE__))

require "cucumber/rake/task"
Cucumber::Rake::Task.new

desc "Default: run tests"
task default: [:spec, :cucumber]

def ensure_relish_doc_symlinked(filename)
from_filename = filename.dup
Expand Down

0 comments on commit 3d99aa6

Please sign in to comment.