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

Side by Side Diff: third_party/gsutil/boto/tests/mturk/all_tests.py

Issue 12317103: Added gsutil to depot tools (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: added readme Created 7 years, 9 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
(Empty)
1
2 import unittest
3 import doctest
4 from glob import glob
5
6 from create_hit_test import *
7 from create_hit_with_qualifications import *
8 from create_hit_external import *
9 from create_hit_with_qualifications import *
10 from hit_persistence import *
11
12 doctest_suite = doctest.DocFileSuite(
13 *glob('*.doctest'),
14 **{'optionflags': doctest.REPORT_ONLY_FIRST_FAILURE}
15 )
16
17 class Program(unittest.TestProgram):
18 def runTests(self, *args, **kwargs):
19 self.test = unittest.TestSuite([self.test, doctest_suite])
20 super(Program, self).runTests(*args, **kwargs)
21
22 if __name__ == '__main__':
23 Program()
24
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698