Don't run oauth.feature on travis, but run all features locally.

This commit is contained in:
Sarah Mei 2011-09-04 11:27:30 -07:00
parent 5e7ec82fe4
commit ad009a71dc
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
@javascript
@javascript @no-ci
Feature: oauth
Exchanging oauth credentials

View file

@ -20,7 +20,7 @@ begin
t.profile = 'default'
cucumber_opts = "--exclude features/uri-tests/*"
cucumber_opts << " -f pretty" unless ENV["CI"] || ENV["TRAVIS"]
cucumber_opts << " --tags ~@no-ci"
cucumber_opts << " --tags ~@no-ci" if ENV["CI"] || ENV["TRAVIS"]
t.cucumber_opts = cucumber_opts
end