Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion snakemake_interface_software_deployment_plugins/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@ def _get_cached_env_spec(self):
spec = deepcopy(self.get_env_spec())
for attr in spec.source_path_attributes():
source_file = getattr(spec, attr)
source_file.cached = source_file.path_or_uri
if source_file is not None:
source_file.cached = source_file.path_or_uri
return spec

def _get_env(self, tmp_path) -> EnvBase:
Expand Down