Total Complexity | 0 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | import argparse |
||
2 | |||
3 | |||
4 | parser = argparse.ArgumentParser(description='Create test cases automatically') |
||
5 | parser.add_argument('--path', help='Project root, use $(pwd) to be sure') |
||
6 | parser.add_argument('--source', help='Modules to check coverage for') |
||
7 | parser.add_argument('--poll-duration', default='1', help='Modules to check coverage for') |
||
8 | parser.add_argument( |
||
9 | '--exclude', |
||
10 | help='Comma separated names of files/dirs that should NOT be watched', |
||
11 | ) |
||
12 | |||
13 | cli_args = parser.parse_args() |
||
14 |