Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions testdroid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,11 @@ def print_project_test_runs(self, project_id, limit=0):
def get_test_run(self, project_id, test_run_id):
return self.get("me/projects/%s/runs/%s" % (project_id, test_run_id))

"""Abort a test run
"""
def abort_test_run(self, project_id, test_run_id):
return self.post("me/projects/%s/runs/%s/abort" % (project_id, test_run_id))

""" Return device runs for a project
"""
def get_device_runs(self, project_id, test_run_id, limit=0):
Expand Down