Skip to content

Commit 303cd35

Browse files
committed
temp: debugging
1 parent 70c02d4 commit 303cd35

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

igor.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,16 +91,17 @@ def do_remove_extension(*args):
9191
roots = [
9292
"coverage",
9393
"build/*/coverage",
94-
".tox/*/lib/*/site-packages/coverage",
95-
".tox/*/Lib/*/site-packages/coverage",
94+
".tox/*/[Ll]ib/*/site-packages/coverage",
9695
]
9796

9897
for root, pattern in itertools.product(roots, so_patterns):
9998
pattern = os.path.join(root, pattern)
10099
if VERBOSITY:
101100
print(f"Searching for {pattern} from {os.getcwd()}")
102101
for filename in glob.glob(pattern):
102+
print(f"Considering {filename = }")
103103
if os.path.exists(filename):
104+
print(f"{filename} exists")
104105
if VERBOSITY:
105106
print(f"Removing {os.path.abspath(filename)}")
106107
try:

0 commit comments

Comments
 (0)