OLD | NEW |
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 Loading... |
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() |
OLD | NEW |