diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-01-23 22:15:49 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-01-23 22:17:16 +0100 |
commit | a3a241d313273d2acbc3424fe06145853cef0286 (patch) | |
tree | df24c38f0639d18831ee80735222d62ea3109948 | |
parent | 5892aab1b54b115cc3e74cb0ac59b0034627bf4e (diff) | |
download | rneovim-a3a241d313273d2acbc3424fe06145853cef0286.tar.gz rneovim-a3a241d313273d2acbc3424fe06145853cef0286.tar.bz2 rneovim-a3a241d313273d2acbc3424fe06145853cef0286.zip |
ci: XXX: Disable "throttle" test on Travis macOS.
-rw-r--r-- | test/functional/ui/output_spec.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/functional/ui/output_spec.lua b/test/functional/ui/output_spec.lua index 47b2516188..d0166bc1c1 100644 --- a/test/functional/ui/output_spec.lua +++ b/test/functional/ui/output_spec.lua @@ -41,6 +41,11 @@ describe("shell command :!", function() end) it("throttles shell-command output greater than ~10KB", function() + if os.getenv("TRAVIS") and helpers.os_name() == "osx" then + pending("[Unreliable on Travis macOS.]", function() end) + return + end + screen.timeout = 20000 -- Avoid false failure on slow systems. child_session.feed_data( ":!for i in $(seq 2 3000); do echo XXXXXXXXXX $i; done\n") |