We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 135bbef commit 247d066Copy full SHA for 247d066
snakemake_interface_software_deployment_plugins/tests.py
@@ -136,7 +136,8 @@ def _get_cached_env_spec(self):
136
spec = deepcopy(self.get_env_spec())
137
for attr in spec.source_path_attributes():
138
source_file = getattr(spec, attr)
139
- source_file.cached = source_file.path_or_uri
+ if source_file is not None:
140
+ source_file.cached = source_file.path_or_uri
141
return spec
142
143
def _get_env(self, tmp_path) -> EnvBase:
0 commit comments