Return-Path: X-Original-To: apmail-aurora-commits-archive@minotaur.apache.org Delivered-To: apmail-aurora-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 870D011B66 for ; Wed, 6 Aug 2014 17:50:53 +0000 (UTC) Received: (qmail 31042 invoked by uid 500); 6 Aug 2014 17:50:53 -0000 Delivered-To: apmail-aurora-commits-archive@aurora.apache.org Received: (qmail 31009 invoked by uid 500); 6 Aug 2014 17:50:53 -0000 Mailing-List: contact commits-help@aurora.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@aurora.incubator.apache.org Delivered-To: mailing list commits@aurora.incubator.apache.org Received: (qmail 31000 invoked by uid 99); 6 Aug 2014 17:50:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Aug 2014 17:50:53 +0000 X-ASF-Spam-Status: No, hits=-2000.7 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 06 Aug 2014 17:50:52 +0000 Received: (qmail 30743 invoked by uid 99); 6 Aug 2014 17:50:32 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Aug 2014 17:50:32 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id D447B92465D; Wed, 6 Aug 2014 17:50:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: wickman@apache.org To: commits@aurora.incubator.apache.org Message-Id: <975d8989832b444cb3d3824c68319804@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: Mark announcer expiration test as flaky. Date: Wed, 6 Aug 2014 17:50:31 +0000 (UTC) X-Virus-Checked: Checked by ClamAV on apache.org Repository: incubator-aurora Updated Branches: refs/heads/master 77f4aa874 -> 7f21e3f41 Mark announcer expiration test as flaky. Testing Done: Test is now skipped: src/test/python/apache/aurora/executor/common/test_announcer.py ..s.... Reviewed at https://reviews.apache.org/r/24393/ Project: http://git-wip-us.apache.org/repos/asf/incubator-aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-aurora/commit/7f21e3f4 Tree: http://git-wip-us.apache.org/repos/asf/incubator-aurora/tree/7f21e3f4 Diff: http://git-wip-us.apache.org/repos/asf/incubator-aurora/diff/7f21e3f4 Branch: refs/heads/master Commit: 7f21e3f419f46c0d89a2d1765b9ff51f177e589c Parents: 77f4aa8 Author: Brian Wickman Authored: Wed Aug 6 10:50:26 2014 -0700 Committer: Brian Wickman Committed: Wed Aug 6 10:50:26 2014 -0700 ---------------------------------------------------------------------- src/test/python/apache/aurora/executor/common/test_announcer.py | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/7f21e3f4/src/test/python/apache/aurora/executor/common/test_announcer.py ---------------------------------------------------------------------- diff --git a/src/test/python/apache/aurora/executor/common/test_announcer.py b/src/test/python/apache/aurora/executor/common/test_announcer.py index df987b5..6f1bd93 100644 --- a/src/test/python/apache/aurora/executor/common/test_announcer.py +++ b/src/test/python/apache/aurora/executor/common/test_announcer.py @@ -15,6 +15,7 @@ import threading import mock +import pytest from kazoo.client import KazooClient from kazoo.exceptions import KazooException from twitter.common.quantity import Amount, Time @@ -107,6 +108,8 @@ def test_announcer_under_normal_circumstances(): 'Announcer should not advance disconnection time when stopped.') +# TODO(wickman) https://issues.apache.org/jira/browse/AURORA-639 +@pytest.mark.skipif('True') def test_announcer_on_expiration(): joined = threading.Event() operations = []