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

Side by Side Diff: appengine/swarming/ts_mon_metrics_test.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/ts_mon_metrics.py ('k') | client/PRESUBMIT.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 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2016 The LUCI Authors. All rights reserved. 2 # Copyright 2016 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 import datetime 6 import datetime
7 import os 7 import os
8 import sys 8 import sys
9 import unittest 9 import unittest
10 10
11 import test_env 11 import test_env
12 test_env.setup_test_env() 12 test_env.setup_test_env()
13 13
14 from google.appengine.ext import deferred 14 from google.appengine.ext import deferred
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 self.assertEqual('bot_id:%s|os:Linux|os:Ubuntu' % bot_id, 175 self.assertEqual('bot_id:%s|os:Linux|os:Ubuntu' % bot_id,
176 ts_mon_metrics.executors_pool.get( 176 ts_mon_metrics.executors_pool.get(
177 fields={'executor_id': bot_id}, 177 fields={'executor_id': bot_id},
178 target_fields=ts_mon_metrics.TARGET_FIELDS)) 178 target_fields=ts_mon_metrics.TARGET_FIELDS))
179 179
180 180
181 if __name__ == '__main__': 181 if __name__ == '__main__':
182 if '-v' in sys.argv: 182 if '-v' in sys.argv:
183 unittest.TestCase.maxDiff = None 183 unittest.TestCase.maxDiff = None
184 unittest.main() 184 unittest.main()
OLDNEW
« no previous file with comments | « appengine/swarming/ts_mon_metrics.py ('k') | client/PRESUBMIT.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698