File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77It does so by first running mypy without incremental mode on the specified range
88of commits to find the expected result, then rewinds back to the first commit and
99re-runs mypy on the commits with incremental mode enabled to make sure it returns
10- the exact same result despite the files continuously changing .
10+ the same results .
1111
12- This script will by default, download and test mypy's repo. So, doing :
12+ This script will download and test the offical mypy repo by default. Running :
1313
1414 python3 misc/incremental_checker.py last 30
1515
16- ... is equivalent to doing
16+ is equivalent to running
1717
1818 python3 misc/incremental_checker.py last 30 \\
1919 --repo_url https://github.com/python/mypy.git \\
2020 --file-path mypy
2121
22- You can chose to run this script against a specific commit id, or against the
22+ You can chose to run this script against a specific commit id or against the
2323last n commits.
2424
25- For example, to run this script against the last 30 commits, do :
25+ To run this script against the last 30 commits:
2626
2727 python3 misc/incremental_checker.py last 30
2828
29- To run this script starting from the commit id 2a432b, do :
29+ To run this script starting from the commit id 2a432b:
3030
3131 python3 misc/incremental_checker.py commit 2a432b
3232"""
You can’t perform that action at this time.
0 commit comments