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

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

Issue 10199002: Upgrade gsutil to 3.4 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed comments Created 8 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 | Annotate | Revision Log
OLDNEW
1 1
2 import unittest 2 import unittest
3 import doctest 3 import doctest
4 from glob import glob 4 from glob import glob
5 5
6 from create_hit_test import * 6 from create_hit_test import *
7 from create_hit_with_qualifications import * 7 from create_hit_with_qualifications import *
8 from create_hit_external import * 8 from create_hit_external import *
9 from create_hit_with_qualifications import * 9 from create_hit_with_qualifications import *
10 from hit_persistence import * 10 from hit_persistence import *
11 11
12 doctest_suite = doctest.DocFileSuite( 12 doctest_suite = doctest.DocFileSuite(
13 *glob('*.doctest'), 13 *glob('*.doctest'),
14 » optionflags=doctest.REPORT_ONLY_FIRST_FAILURE 14 » **{'optionflags': doctest.REPORT_ONLY_FIRST_FAILURE}
15 ) 15 )
16 16
17 class Program(unittest.TestProgram): 17 class Program(unittest.TestProgram):
18 def runTests(self, *args, **kwargs): 18 def runTests(self, *args, **kwargs):
19 self.test = unittest.TestSuite([self.test, doctest_suite]) 19 self.test = unittest.TestSuite([self.test, doctest_suite])
20 super(Program, self).runTests(*args, **kwargs) 20 super(Program, self).runTests(*args, **kwargs)
21 21
22 if __name__ == '__main__': 22 if __name__ == '__main__':
23 Program() 23 Program()
24 24
OLDNEW
« no previous file with comments | « third_party/gsutil/boto/tests/mturk/_init_environment.py ('k') | third_party/gsutil/boto/tests/mturk/cleanup_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698