From cf3dfa2fe3d0b079b15c9e92e2ac57e7c10c2403 Mon Sep 17 00:00:00 2001 From: Nicola Soranzo Date: Thu, 30 Nov 2023 13:56:52 +0000 Subject: [PATCH] Workaround missing test files in env.sh --- recipes/pysam/env.sh | 3 +++ recipes/pysam/meta.yaml | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/recipes/pysam/env.sh b/recipes/pysam/env.sh index 7583a55..348f7cf 100644 --- a/recipes/pysam/env.sh +++ b/recipes/pysam/env.sh @@ -1,2 +1,5 @@ export CIBW_BEFORE_ALL_LINUX='yum install -y libcurl-devel zlib-devel bzip2-devel xz-devel && pip install cython' export CIBW_SKIP='*-musllinux_* *-macosx_*' +# Test files are not currently included in the sdist +export CIBW_TEST_COMMAND= +export CIBW_TEST_REQUIRES= diff --git a/recipes/pysam/meta.yaml b/recipes/pysam/meta.yaml index 7f12d69..dc79236 100644 --- a/recipes/pysam/meta.yaml +++ b/recipes/pysam/meta.yaml @@ -6,4 +6,3 @@ run_in_sdist: true run_in_sdist_before: - curl -Lo htslib/hts_probe_cc.sh 'https://raw.githubusercontent.com/pysam-developers/pysam/v0.22.0/htslib/hts_probe_cc.sh' - chmod +x htslib/hts_probe_cc.sh -- sed -i 's/^test-.*//' pyproject.toml