Skip to content

Commit

Permalink
[temp] print cwd for failing ci
Browse files Browse the repository at this point in the history
  • Loading branch information
swathipil committed Dec 17, 2024
1 parent ee464e2 commit e3e4428
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@
from subprocess import check_call
import zipfile

import os

current_dir = os.getcwd()
entries = os.listdir(current_dir)

for entry in entries:
print(entry)

from ._metadata_map import MetadataMap

Expand Down

0 comments on commit e3e4428

Please sign in to comment.