You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by wi...@apache.org on 2014/08/06 19:50:31 UTC

git commit: Mark announcer expiration test as flaky.

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 <wi...@apache.org>
Authored: Wed Aug 6 10:50:26 2014 -0700
Committer: Brian Wickman <wi...@apache.org>
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 = []