mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
travishatesme
This commit is contained in:
parent
518ae3f46d
commit
bd9d9d0f93
3 changed files with 3 additions and 2 deletions
|
@ -7,7 +7,7 @@ rvm:
|
|||
|
||||
script: "bundle exec rake test"
|
||||
|
||||
env: TEST=true
|
||||
env: TEST=true TRAVIS=true
|
||||
|
||||
matrix:
|
||||
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 ~@nojava" if RUBY_PLATFORM == "java"
|
||||
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'}"
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@encoding
|
||||
@encoding @travishatesme
|
||||
|
||||
Feature: Unicode filenames
|
||||
In order to support non-ASCII characters in filenames
|
||||
|
|
Loading…
Reference in a new issue