From c66b1e8a6cad94e681ca7306ccbae27049ded78d Mon Sep 17 00:00:00 2001 From: Evan Phoenix Date: Thu, 29 Nov 2012 12:05:29 -0800 Subject: [PATCH] Exclude test_integration on Travis due to fragility --- test/test_integration.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/test_integration.rb b/test/test_integration.rb index e9e53d71..d0ac6b24 100644 --- a/test/test_integration.rb +++ b/test/test_integration.rb @@ -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']