8000 Static and run-time tests for stubs by vlasovskikh · Pull Request #917 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

Static and run-time tests for stubs #917

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

Closed
wants to merge 10 commits into from
Closed
Prev Previous commit
Reverted running pytype_test (pytd, as it turned out) for *.py files
  • Loading branch information
vlasovskikh committed Feb 10, 2017
commit 3a3c6ad11f3f13ff33da8f12ad260c25b42184fd
2 changes: 1 addition & 1 deletion tests/pytype_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def pytype_test(args):
print("Cannot run pytd. Did you install pytype?")
return 0, 0

wanted = re.compile(r"stdlib/(2|2\.7|2and3)/.*\.pyi?$")
wanted = re.compile(r"stdlib/(2|2\.7|2and3)/.*\.pyi$")
skipped = re.compile("(%s)$" % "|".join(load_blacklist()))
files = []

Expand Down
0