| Conditions | 1 |
| Total Lines | 10 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | # -*- coding: utf-8 -*- |
||
| 22 | @main.command() |
||
| 23 | @click.argument('project_path', type=click.Path(exists=True)) |
||
| 24 | @click.option('--origin_branch', default='master', |
||
| 25 | help='Branch to start the evaluation') |
||
| 26 | @click.option('--work_branch', default=False, |
||
| 27 | help='Name of the branch that has the modifications') |
||
| 28 | @click.option('--output_file', default='list_output.py', |
||
| 29 | help='Change the name of the output file') |
||
| 30 | def track(**kwargs): |
||
| 31 | track_modifications(**kwargs) |
||
| 32 | |||
| 36 |