From a538cc98d54031f25e44787a90649ea909877f12 Mon Sep 17 00:00:00 2001 From: Valentin Stanciu <250871+svalentin@users.noreply.github.com> Date: Fri, 14 Jul 2023 14:33:32 +0300 Subject: [PATCH] fix cherry-pick-typeshed (#15672) It should exclude test_cases too --- misc/cherry-pick-typeshed.py | 1 + 1 file changed, 1 insertion(+) diff --git a/misc/cherry-pick-typeshed.py b/misc/cherry-pick-typeshed.py index af08009c2a8f..7e3b8b56e65f 100644 --- a/misc/cherry-pick-typeshed.py +++ b/misc/cherry-pick-typeshed.py @@ -53,6 +53,7 @@ def main() -> None: "--index", "--directory=mypy/typeshed", "--exclude=**/tests/**", + "--exclude=**/test_cases/**", diff_file, ], check=True,