From 1582e9bf7d94dcb5bd17c89c6f9289e112d9ec2e Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Fri, 5 May 2017 17:16:50 +0800 Subject: [PATCH] Fix handling of Shippable env vars. --- test/runner/lib/cloud/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runner/lib/cloud/__init__.py b/test/runner/lib/cloud/__init__.py index edf2d33a5fb..b4e4d7a27a9 100644 --- a/test/runner/lib/cloud/__init__.py +++ b/test/runner/lib/cloud/__init__.py @@ -319,7 +319,7 @@ class CloudProvider(CloudBase): :rtype: str """ if is_shippable(): - return 'shippable-%d-%d' % ( + return 'shippable-%s-%s' % ( os.environ['SHIPPABLE_BUILD_NUMBER'], os.environ['SHIPPABLE_JOB_NUMBER'], )