Fix run filter on Shippable downloader.

This commit is contained in:
Matt Clay 2017-05-16 23:52:18 +08:00
parent 05d8b64cc9
commit 6e160650e9

View file

@ -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)