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

@@ -67,13 +67,13 @@ jobs:
- run: pip install -U git+git://github.com/python/mypy
- run: ./tests/mypy_test.py --platform=${{ matrix.platform }}
mypy-self-test:
name: Test mypy source with itself
mypy-self-check:
name: Check mypy source with itself
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: ./tests/mypy_selftest.py
- run: ./tests/mypy_self_check.py
mypy-test-suite:
name: Run the mypy test suite

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: