File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 19
19
extra_args = []
20
20
21
21
parser = argparse .ArgumentParser ()
22
- parser .add_argument ('--no-pep8' , action ="store_true" )
23
- parser .add_argument ('--pep8' , action = "store_true" )
24
- parser .add_argument ('--no-network' , action = "store_true" )
25
- parser .add_argument ('-j' , type = int )
22
+ parser .add_argument ('--no-pep8' , action = 'store_true' ,
23
+ help = 'Run all tests except PEP8 testing' )
24
+ parser .add_argument ('--pep8' , action = 'store_true' ,
25
+ help = 'Run only PEP8 testing' )
26
+ parser .add_argument ('--no-network' , action = 'store_true' ,
27
+ help = 'Run tests without network connection' )
28
+ parser .add_argument ('-j' , type = int ,
29
+ help = 'Shortcut for specifying number of test processes' )
26
30
args = parser .parse_args ()
27
31
28
32
if args .no_pep8 :
You can’t perform that action at this time.
0 commit comments