mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 12:14:27 +08:00
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:
6
.github/workflows/tests.yml
vendored
6
.github/workflows/tests.yml
vendored
@@ -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
|
||||
|
||||
@@ -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:
|
||||
Reference in New Issue
Block a user