diff --git a/Rakefile b/Rakefile index 9835047..0e04853 100644 --- a/Rakefile +++ b/Rakefile @@ -18,6 +18,11 @@ namespace :cucumber do t.cucumber_opts = "--tags ~@wip --format pretty" end + desc "Run the scenarios which don't require network access" + Cucumber::Rake::Task.new(:nonetwork) do |t| + t.cucumber_opts = "--tags ~@wip --tags ~@realupdatecenter --format pretty" + end + desc "Run the scenarios tagged with @wip" Cucumber::Rake::Task.new(:wip) do |t| t.cucumber_opts = "--tags @wip --format pretty"