8000 Re-organize directory structure by ilevkivskyi · Pull Request #4971 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

Re-organize directory structure #4971

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
Jan 27, 2021
Merged
Prev Previous commit
Next Next commit
Remove couple TODOs
  • Loading branch information
Ivan Levkivskyi committed Jan 26, 2021
commit b18bce046103756b8cd68b1597ce415e53aed203
1 change: 0 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install toml # TODO: remove when it is a mypy dep.
- run: pip install -U git+git://github.com/python/mypy
- run: ./tests/mypy_test.py --platform=${{ matrix.platform }}

Expand Down
8 changes: 3 additions & 5 deletions tests/mypy_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,12 +186,10 @@ def main():
"--no-implicit-optional",
"--disallow-any-generics",
"--disallow-subclassing-any",
# Setting custom typeshed dir prevents mypy from falling back to its bundled
# typeshed in case of stub deletions
"--custom-typeshed-dir", os.path.dirname(os.path.dirname(__file__)),
]
# Setting custom typeshed dir prevents mypy from falling back to its bundled typeshed in
# case of stub deletions
# TODO: re-enable when supported.
# flags.append("--custom-typeshed-dir")
# flags.append(os.path.dirname(os.path.dirname(__file__)))
if args.warn_unused_ignores:
flags.append("--warn-unused-ignores")
if args.platform:
Expand Down
0