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

Side by Side Diff: appengine/swarming/swarming_bot/api/platforms/win_test.py

Issue 1860863002: Update copyright notice from Swarming to LUCI; add AUTHORS and CONTRIBUTORS. (Closed) Base URL: git@github.com:luci/luci-py.git@master
Patch Set: . Created 4 years, 8 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
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2015 The Swarming Authors. All rights reserved. 2 # Copyright 2015 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 by the Apache v2.0 license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 import logging 6 import logging
7 import sys 7 import sys
8 import unittest 8 import unittest
9 9
10 import test_env_platforms 10 import test_env_platforms
11 test_env_platforms.setup_test_env() 11 test_env_platforms.setup_test_env()
12 12
(...skipping 23 matching lines...) Expand all
36 actual = win.to_cygwin_path(inputs) 36 actual = win.to_cygwin_path(inputs)
37 self.assertEqual(expected, actual, (inputs, expected, actual, i)) 37 self.assertEqual(expected, actual, (inputs, expected, actual, i))
38 38
39 39
40 if __name__ == '__main__': 40 if __name__ == '__main__':
41 if '-v' in sys.argv: 41 if '-v' in sys.argv:
42 unittest.TestCase.maxDiff = None 42 unittest.TestCase.maxDiff = None
43 logging.basicConfig( 43 logging.basicConfig(
44 level=logging.DEBUG if '-v' in sys.argv else logging.CRITICAL) 44 level=logging.DEBUG if '-v' in sys.argv else logging.CRITICAL)
45 unittest.main() 45 unittest.main()
OLDNEW
« no previous file with comments | « appengine/swarming/swarming_bot/api/platforms/win.py ('k') | appengine/swarming/swarming_bot/api/test_env_api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698