Skip to content

Commit

Permalink
Merge branch 'bugfix/dont-collect-pycache' into feat/load-balancer-co…
Browse files Browse the repository at this point in the history
…mponent
  • Loading branch information
akihironitta committed Nov 24, 2022
2 parents 0725439 + 324d41d commit 0d67fd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .actions/setup_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def _load_aggregate_requirements(req_dir: str = "requirements", freeze_requireme
load_requirements(d, file_name="base.txt", unfreeze=not freeze_requirements)
for d in glob.glob(os.path.join(req_dir, "*"))
# skip empty folder as git artefacts, and resolving Will's special issue
if os.path.isdir(d) and len(glob.glob(os.path.join(d, "*"))) > 0
if os.path.isdir(d) and len(glob.glob(os.path.join(d, "*"))) > 0 and "__pycache__" not in d
]
if not requires:
return None
Expand Down

0 comments on commit 0d67fd2

Please sign in to comment.