remove unused autopkgtests
authorMichael R. Crusoe <michael.crusoe@gmail.com>
Sun, 17 Nov 2019 17:33:08 +0000 (18:33 +0100)
committerMichael R. Crusoe <michael.crusoe@gmail.com>
Sun, 17 Nov 2019 17:37:21 +0000 (18:37 +0100)
debian/tests/run-nose-tests [deleted file]
debian/tests/run-nose3-tests [deleted file]

diff --git a/debian/tests/run-nose-tests b/debian/tests/run-nose-tests
deleted file mode 100755 (executable)
index 75c3ba6..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh -e
-
-if [ "$ADTTMP" = "" ] ; then
-  ADTTMP=`mktemp -d /tmp/python-pysam-test.XXXXXX`
-fi
-cp -ra /usr/share/doc/python-pysam/data/* $ADTTMP
-
-# FIXME!!
-# That's a pretty strange hack but without it the dynamic libraries are not found
-# Need to be tracked down before uploading
-cd /usr/lib/python2.7/dist-packages/pysam
-gnutype=`dpkg-architecture -qDEB_TARGET_GNU_TYPE`
-for so in *.${gnutype}.so ; do sudo ln -sf $so `basename $so .${gnutype}.so`.so ; done
-
-cd $ADTTMP
-find . -name "*.gz" -exec gunzip -f \{\} \;
-
-nosetests --nocapture -v
-cd
-# rm -rf $ADTTMP
-
diff --git a/debian/tests/run-nose3-tests b/debian/tests/run-nose3-tests
deleted file mode 100755 (executable)
index ffa0b12..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh -e
-
-if [ "$ADTTMP" = "" ] ; then
-  ADTTMP=`mktemp -d /tmp/python3-pysam-test.XXXXXX`
-fi
-cd $ADTTMP
-cp -ra /usr/share/doc/python-pysam/tests/* $ADTTMP
-nosetests3 --nocapture
-cd
-rm -rf $ADTTMP