From 6e160650e9223b13ade749ca0cf44667e246b57d Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Tue, 16 May 2017 23:52:18 +0800 Subject: [PATCH] Fix run filter on Shippable downloader. --- test/utils/shippable/download.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utils/shippable/download.py b/test/utils/shippable/download.py index 787fde95d8..16bec1c1df 100755 --- a/test/utils/shippable/download.py +++ b/test/utils/shippable/download.py @@ -138,7 +138,7 @@ def main(): project_id = response.json()[0]['id'] - url = 'https://api.shippable.com/runs?projectIds=%s' % project_id + url = 'https://api.shippable.com/runs?projectIds=%s&runNumbers=%s' % (project_id, run_number) response = requests.get(url, headers=headers)