diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-03-12 19:26:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-12 19:26:24 +0100 |
commit | 4f5e3781247501035de226cb581dee78691afb03 (patch) | |
tree | 270c5c5794c7377d1e802c1be39699987ae4b6fd | |
parent | 8760816d4672b6badbc264033f8c6922570b7a9a (diff) | |
download | rneovim-4f5e3781247501035de226cb581dee78691afb03.tar.gz rneovim-4f5e3781247501035de226cb581dee78691afb03.tar.bz2 rneovim-4f5e3781247501035de226cb581dee78691afb03.zip |
test/CI: skip "throttles output" test on Travis macOS #9721
Travis macOS is not fast enough to run this test reliably. The test
depends on the system producing output faster than the Nvim TUI can
handle it.
-rw-r--r-- | test/functional/ui/output_spec.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/ui/output_spec.lua b/test/functional/ui/output_spec.lua index 87b489fd71..38c4527a5b 100644 --- a/test/functional/ui/output_spec.lua +++ b/test/functional/ui/output_spec.lua @@ -51,7 +51,8 @@ describe("shell command :!", function() end) it("throttles shell-command output greater than ~10KB", function() - if helpers.skip_fragile(pending) then + if helpers.skip_fragile(pending, + (os.getenv("TRAVIS") and helpers.os_name() == "osx")) then return end child_session.feed_data( |