Skip to content

Commit 1c64a8f

Browse files
fix: use method for testing if env is deployable in test suite
1 parent 5114693 commit 1c64a8f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • snakemake_interface_software_deployment_plugins

snakemake_interface_software_deployment_plugins/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def test_default_settings(self):
7171
def test_shellcmd(self, tmp_path):
7272
env = self._get_env(tmp_path)
7373

74-
if isinstance(env, DeployableEnvBase):
74+
if env.is_deployable():
7575
pytest.skip("Environment is deployable, using test_deploy instead.")
7676

7777
cmd = self.get_test_cmd()

0 commit comments

Comments
 (0)