[ARVADOS] updated: 98fd71e2bde6997936fff359880a4d5993df6605
git at public.curoverse.com
git at public.curoverse.com
Wed Oct 21 17:30:12 EDT 2015
Summary of changes:
sdk/python/tests/test_retry_job_helpers.py | 14 ++++++++++++++
1 file changed, 14 insertions(+)
via 98fd71e2bde6997936fff359880a4d5993df6605 (commit)
from cb29d6e2bc428f72a5913037de26016bd702ac94 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 98fd71e2bde6997936fff359880a4d5993df6605
Author: Bryan Cosca <bcosc at curoverse.com>
Date: Wed Oct 21 17:30:02 2015 -0400
6600: flailing 5.29 10.21
diff --git a/sdk/python/tests/test_retry_job_helpers.py b/sdk/python/tests/test_retry_job_helpers.py
index 747a1af..9777e09 100644
--- a/sdk/python/tests/test_retry_job_helpers.py
+++ b/sdk/python/tests/test_retry_job_helpers.py
@@ -76,6 +76,13 @@ class CurrentJobTestCase(ApiClientRetryTestMixin, unittest.TestCase):
os.environ['JOB_UUID'] = 'zzzzz-zzzzz-zzzzzzzzzzzzzzz'
os.environ['JOB_WORK'] = '.'
+ def tearDown(self):
+ super(CurrentJobTestCase,self).tearDown()
+ try:
+ arvados._current_job = None
+ except:
+ raise
+
def run_method(self):
arvados.current_job()
@@ -88,6 +95,13 @@ class CurrentTaskTestCase(ApiClientRetryTestMixin, unittest.TestCase):
os.environ['TASK_UUID'] = 'zzzzz-zzzzz-zzzzzzzzzzzzzzz'
os.environ['TASK_WORK'] = '.'
+ def tearDown(self):
+ super(CurrentTaskTestCase,self).tearDown()
+ try:
+ arvados._current_task = None
+ except:
+ raise
+
def run_method(self):
arvados.current_task()
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list