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 1919 extra_args = []
2020
2121 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' )
2630 args = parser .parse_args ()
2731
2832 if args .no_pep8 :
You can’t perform that action at this time.
0 commit comments