snakemake: skip_modules snakemake.common.tests (#48395)

This commit is contained in:
Wouter Deconinck 2025-01-04 16:19:50 -06:00 committed by GitHub
parent fd51f1ce65
commit cf06b395b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -158,6 +158,9 @@ class Snakemake(PythonPackage):
)
depends_on("py-requests", when="+http", type=("build", "run"))
# snakemake.common.tests requires pytest
skip_modules = ["snakemake.common.tests"]
def test_run(self):
"""Test if snakemake runs with the version option"""
Executable(self.prefix.bin.snakemake)("--version")