Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5706876 commit dcb84d2Copy full SHA for dcb84d2
1 file changed
tests.py
@@ -19,10 +19,14 @@
19
extra_args = []
20
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)
+ parser.add_argument('--no-pep8', action='store_true',
+ help='Run all tests except PEP8 testing')
+ parser.add_argument('--pep8', action='store_true',
+ 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')
30
args = parser.parse_args()
31
32
if args.no_pep8:
0 commit comments