fastest.cli.args   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 10
dl 0
loc 14
rs 10
c 0
b 0
f 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