summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/async_test.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/async_test.py b/test/async_test.py
index cec512b..4c99a56 100644
--- a/test/async_test.py
+++ b/test/async_test.py
@@ -11,7 +11,12 @@ def __tester(async):
client = Client("*",nforks=10,async=True)
oldtime = time.time()
print "asking minion to sleep for %s seconds" % TEST_SLEEP
- job_id = client.test.sleep(TEST_SLEEP)
+
+ # job_id = client.test.sleep(TEST_SLEEP)
+ job_id = client.hardware.info()
+ # job_id = client.test.explode()
+ # job_id = client.test.does_not_exist(1,2)
+
print "job_id = %s" % job_id
while True:
status = client.job_status(job_id)