From 6720bc51c0e9711a141b54ef785b5da52c27f0f5 Mon Sep 17 00:00:00 2001 From: Mattia Rizzolo Date: Tue, 24 Oct 2017 18:25:30 +0200 Subject: [PATCH] Skip tests on ppc64el to avoid build-dep on bcftools currently uninstallable Hopefully this will help unstuck the current python3 transition. Signed-off-by: Mattia Rizzolo --- debian/control | 2 +- debian/rules | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/debian/control b/debian/control index 7818024..02e0a58 100644 --- a/debian/control +++ b/debian/control @@ -20,7 +20,7 @@ Build-Depends: cython3 (>= 0.23), tabix , samtools (>= 1.5) , - bcftools (>= 1.5) , + bcftools (>= 1.5) [!ppc64el] , python-pytest , python3-pytest , Standards-Version: 4.1.0 diff --git a/debian/rules b/debian/rules index cb44816..4e6bfd7 100755 --- a/debian/rules +++ b/debian/rules @@ -23,11 +23,15 @@ override_dh_install: clean-tests dh_install -Xtest.gtf.gz ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS))) +ifneq ($(DEB_HOST_ARCH),ppc64el) override_dh_auto_test: pysam_data.all cbcf_data.all dh_auto_test else override_dh_auto_test: endif +else +override_dh_auto_test: +endif override_dh_auto_clean: dh_auto_clean -- 2.30.2