You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
, use more time than necessary. It copies over resources folder (which could be huge) to the cloned path, even though this subfolder is part of .gitignore and not uploaded (instead it is uploaded to blob storage in a later step).
The current function,
webviz-config/webviz_config/_deployment/github_cli.py
Lines 146 to 182 in c65df43
resources
folder (which could be huge) to the cloned path, even though this subfolder is part of.gitignore
and not uploaded (instead it is uploaded to blob storage in a later step).Ignore
resources
folder to potentially safe quite some runtime.shutil.copytree
supports e.g.ignore_patterns
(https://docs.python.org/3/library/shutil.html#shutil.ignore_patterns).The text was updated successfully, but these errors were encountered: