From 69141f69f8bf38da34cbea552d6fdaa9c8619c53 Mon Sep 17 00:00:00 2001 From: Anderson Bravalheri Date: Mon, 20 May 2024 09:36:27 +0100 Subject: [PATCH] Add doctest for vendorised bin folder --- tools/vendored.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/vendored.py b/tools/vendored.py index 57fd093aab..41079e1330 100644 --- a/tools/vendored.py +++ b/tools/vendored.py @@ -171,6 +171,8 @@ def yield_top_level(name): >>> examples = roots & {"jaraco", "backports", "zipp"} >>> list(sorted(examples)) ['backports', 'jaraco', 'zipp'] + >>> 'bin' in examples + False """ vendor = Path(f"{name}/_vendor") ignore = {"__pycache__", "__init__.py", ".ruff_cache", "bin"}