From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Alexander Turenko Subject: [PATCH v2] test: disable feedback daemon test on Mac OS in CI Date: Wed, 10 Oct 2018 01:16:53 +0300 Message-Id: In-Reply-To: <6ae48298a0b30cab5c520e159840217867b58bfb.1539109614.git.alexander.turenko@tarantool.org> References: <6ae48298a0b30cab5c520e159840217867b58bfb.1539109614.git.alexander.turenko@tarantool.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit To: Vladimir Davydov Cc: Alexander Turenko , tarantool-patches@freelists.org, Sergei Voronezhskii List-ID: The fail is known and should not have any influence on our CI results. The test should be enabled back after a fix of #3558. --- https://github.com/tarantool/tarantool/issues/3558 https://github.com/tarantool/tarantool/commits/Totktonada/gh-3558-disable-feedback-daemon-test-mac-os https://travis-ci.org/tarantool/tarantool/builds/439377915 test/box-tap/feedback_daemon.skipcond | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test/box-tap/feedback_daemon.skipcond diff --git a/test/box-tap/feedback_daemon.skipcond b/test/box-tap/feedback_daemon.skipcond new file mode 100644 index 000000000..778c8a135 --- /dev/null +++ b/test/box-tap/feedback_daemon.skipcond @@ -0,0 +1,8 @@ +import os +import platform + +# Disabled on Mac OS in CI due to flaky fail #3558. +if os.environ.get('TRAVIS_JOB_ID', '') and platform.system() == 'Darwin': + self.skip = 1 + +# vim: set ft=python: -- 2.19.0