mypy_selftest: rename to mypy_self_check (#4712)

This better disambiguates it from mypy_test_suite and is more inline
with how mypy refers to it internally.

Co-authored-by: hauntsaninja <>
This commit is contained in:
Shantanu
2020-10-25 13:31:43 -07:00
committed by GitHub
parent e61f1783fb
commit 8d4a4f9e74
2 changed files with 4 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ if __name__ == "__main__":
with tempfile.TemporaryDirectory() as tempdir:
dirpath = Path(tempdir)
subprocess.run(
["git", "clone", "--depth", "1", "git://github.com/python/mypy", str(dirpath)],
["git", "clone", "--depth", "1", "git://github.com/python/mypy", dirpath],
check=True,
)
try: