Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(504)

Side by Side Diff: appengine/swarming/test_env_handlers.py

Issue 2013943002: Changing license header, again! (Closed) Base URL: git@github.com:luci/luci-py.git@master
Patch Set: Fixed third parties Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « appengine/swarming/test_env.py ('k') | appengine/swarming/tools/android/setup_udev.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # coding: utf-8 1 # coding: utf-8
2 # Copyright 2014 The LUCI Authors. All rights reserved. 2 # Copyright 2014 The LUCI Authors. All rights reserved.
3 # Use of this source code is governed by the Apache v2.0 license that can be 3 # Use of this source code is governed under the Apache License, Version 2.0
4 # found in the LICENSE file. 4 # that can be found in the LICENSE file.
5 5
6 """Base class for handlers_*_test.py""" 6 """Base class for handlers_*_test.py"""
7 7
8 import base64 8 import base64
9 import json 9 import json
10 import os 10 import os
11 11
12 import test_env 12 import test_env
13 test_env.setup_test_env() 13 test_env.setup_test_env()
14 14
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 257
258 def client_create_task_raw(self, properties=None, **kwargs): 258 def client_create_task_raw(self, properties=None, **kwargs):
259 """Creates a raw command TaskRequest via the Cloud Endpoints API.""" 259 """Creates a raw command TaskRequest via the Cloud Endpoints API."""
260 properties = (properties or {}).copy() 260 properties = (properties or {}).copy()
261 properties['command'] = ['python', 'run_test.py'] 261 properties['command'] = ['python', 'run_test.py']
262 return self._client_create_task(properties, **kwargs) 262 return self._client_create_task(properties, **kwargs)
263 263
264 def client_get_results(self, task_id): 264 def client_get_results(self, task_id):
265 api = test_case.Endpoints(handlers_endpoints.SwarmingTaskService) 265 api = test_case.Endpoints(handlers_endpoints.SwarmingTaskService)
266 return api.call_api('result', body={'task_id': task_id}).json 266 return api.call_api('result', body={'task_id': task_id}).json
OLDNEW
« no previous file with comments | « appengine/swarming/test_env.py ('k') | appengine/swarming/tools/android/setup_udev.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698