From 19f5cd36e50626f64f568a7c3bec5520613adaba Mon Sep 17 00:00:00 2001 From: Daniel Wagner-Hall Date: Mon, 4 Feb 2019 10:47:30 +0000 Subject: [PATCH] Skip flaky test Relates to #7199 --- tests/python/pants_test/base/test_exception_sink_integration.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/python/pants_test/base/test_exception_sink_integration.py b/tests/python/pants_test/base/test_exception_sink_integration.py index fa98cee6a7a..cffc3b95578 100644 --- a/tests/python/pants_test/base/test_exception_sink_integration.py +++ b/tests/python/pants_test/base/test_exception_sink_integration.py @@ -123,6 +123,7 @@ def test_dumps_logs_on_terminate(self): self._assert_graceful_signal_log_matches( waiter_run.pid, signal.SIGTERM, read_file(shared_log_file, binary_mode=False)) + @unittest.skip('Hangs a lot: https://github.com/pantsbuild/pants/issues/7199') def test_dumps_traceback_on_sigabrt(self): # SIGABRT sends a traceback to the log file for the current process thanks to # faulthandler.enable().