Skip to content

Commit

Permalink
Merge pull request #3203 from boegel/speedup_D
Browse files Browse the repository at this point in the history
significantly speed up -D/--dry-run by avoiding useless 'module show'
  • Loading branch information
akesandgren authored Feb 14, 2020
2 parents 090f8c1 + 70d0836 commit 49533e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easybuild/framework/easyconfig/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
def skip_available(easyconfigs, modtool):
"""Skip building easyconfigs for existing modules."""
module_names = [ec['full_mod_name'] for ec in easyconfigs]
modules_exist = modtool.exist(module_names)
modules_exist = modtool.exist(module_names, maybe_partial=False)
retained_easyconfigs = []
for ec, mod_name, mod_exists in zip(easyconfigs, module_names, modules_exist):
if mod_exists:
Expand Down

0 comments on commit 49533e6

Please sign in to comment.