Skip to content

Commit

Permalink
celery is installed in virtualenv
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmed Soliman committed Sep 21, 2011
1 parent b19079d commit 51fc045
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/fixtures/CeleryFixture.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def __init__(self):
def setUp(self):
logging.info("Starting Up Celery...")
env = os.environ.copy()
self.p = subprocess.Popen([self.celerybin])
self.p = subprocess.Popen('celeryd')
sleepTime = 2
logging.info("Waiting for %s seconds of second to let celery settle" % sleepTime)
time.sleep(sleepTime)
Expand All @@ -21,4 +21,4 @@ def tearDown(self):
time.sleep(1)
self.p.kill()
self.p.wait()
time.sleep(1)
time.sleep(1)

0 comments on commit 51fc045

Please sign in to comment.