This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Traceback (most recent call last): | |
File "/home/wulczer/virtualenv/ducksboard/lib/python2.7/site-packages/nose/case.py", line 187, in runTest | |
self.test(*self.arg) | |
File "/home/wulczer/virtualenv/ducksboard/lib/python2.7/site-packages/nose/tools.py", line 117, in newfunc | |
func(*arg, **kw) | |
File "/home/wulczer/src/pika/tests/functional/queue_consume_and_delete_test.py", line 21, in test_send_invalid | |
self.connection.ioloop.start() | |
File "../pika/adapters/select_connection.py", line 127, in start | |
self.poller.start() | |
File "../pika/adapters/select_connection.py", line 391, in start |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import nose | |
import support | |
import support.tools | |
from pika.adapters import SelectConnection | |
class TestQueueConsumeAndDelete(support.tools.AsyncPattern): | |
@nose.tools.timed(2) | |
def test_send_invalid(self): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import time | |
# Detect if we're running in a git repo | |
from os.path import exists, normpath | |
if exists(normpath('../pika')): | |
sys.path.insert(0, '..') | |
from pika.adapters import SelectConnection | |
from pika.connection import ConnectionParameters |
NewerOlder