1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Exclude test_integration on Travis due to fragility

This commit is contained in:
Evan Phoenix 2012-11-29 12:05:29 -08:00
parent 63c9625230
commit c66b1e8a6c

View file

@ -8,6 +8,8 @@ require 'tempfile'
require 'puma/cli'
require 'puma/control_cli'
# These don't run on travis because they're too fragile
class TestIntegration < Test::Unit::TestCase
def setup
@state_path = "test/test_puma.state"
@ -145,4 +147,4 @@ class TestIntegration < Test::Unit::TestCase
data = s.read
assert_equal "HTTP/1.1 400 Bad Request\r\n\r\n", data
end
end
end unless ENV['TRAVIS']