[Python-modules-commits] [celery] 06/15: Disable time-sensitive test

Michael Fladischer fladi at moszumanska.debian.org
Mon Feb 1 15:50:20 UTC 2016


This is an automated email from the git hooks/post-receive script.

fladi pushed a commit to branch master
in repository celery.

commit 9e0bb57caff60fc7775d89159f1a72fd028a6221
Author: Michael Fladischer <fladi at debian.org>
Date:   Thu Oct 8 08:37:04 2015 -0700

    Disable time-sensitive test
    
     Upstream has admited that this single test
     (test_receieve_message_eta_isoformat) fails randomly. Disabling it by raising
     a SkipTest exception.
    Forwarded: no
    Bug: https://github.com/celery/celery/issues/1450
    
    Patch-Name: disable_unstable_tests.patch
---
 celery/tests/worker/test_worker.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/celery/tests/worker/test_worker.py b/celery/tests/worker/test_worker.py
index b700a6c..27451d0 100644
--- a/celery/tests/worker/test_worker.py
+++ b/celery/tests/worker/test_worker.py
@@ -416,6 +416,7 @@ class test_Consumer(AppCase):
         self.assertIs(self.buffer.get_nowait(), task)
 
     def test_receieve_message_eta_isoformat(self):
+        raise SkipTest('broken test, may fail at random')
         l = _MyKombuConsumer(self.buffer.put, timer=self.timer, app=self.app)
         l.blueprint.state = RUN
         l.steps.pop()
@@ -516,6 +517,7 @@ class test_Consumer(AppCase):
         self.assertTrue(logger.critical.call_count)
 
     def test_receive_message_eta(self):
+        raise SkipTest('broken test, may fail at random')
         import sys
         from functools import partial
         if os.environ.get('C_DEBUG_TEST'):

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/celery.git



More information about the Python-modules-commits mailing list