travishatesme
This commit is contained in:
parent
518ae3f46d
commit
bd9d9d0f93
|
@ -7,7 +7,7 @@ rvm:
|
||||||
|
|
||||||
script: "bundle exec rake test"
|
script: "bundle exec rake test"
|
||||||
|
|
||||||
env: TEST=true
|
env: TEST=true TRAVIS=true
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
allow_failures:
|
allow_failures:
|
||||||
|
|
|
@ -20,6 +20,7 @@ Cucumber::Rake::Task.new(:test, 'Run features that should pass') do |t|
|
||||||
exempt_tags = ["--tags ~@wip"]
|
exempt_tags = ["--tags ~@wip"]
|
||||||
exempt_tags << "--tags ~@nojava" if RUBY_PLATFORM == "java"
|
exempt_tags << "--tags ~@nojava" if RUBY_PLATFORM == "java"
|
||||||
exempt_tags << "--tags ~@encoding" unless Object.const_defined?(:Encoding)
|
exempt_tags << "--tags ~@encoding" unless Object.const_defined?(:Encoding)
|
||||||
|
exempt_tags << "--tags ~@travishatesme" if ENV["TRAVIS"] == "true"
|
||||||
|
|
||||||
t.cucumber_opts = "--color #{exempt_tags.join(" ")} --strict --format #{ENV['CUCUMBER_FORMAT'] || 'Fivemat'}"
|
t.cucumber_opts = "--color #{exempt_tags.join(" ")} --strict --format #{ENV['CUCUMBER_FORMAT'] || 'Fivemat'}"
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@encoding
|
@encoding @travishatesme
|
||||||
|
|
||||||
Feature: Unicode filenames
|
Feature: Unicode filenames
|
||||||
In order to support non-ASCII characters in filenames
|
In order to support non-ASCII characters in filenames
|
||||||
|
|
Loading…
Reference in a new issue