Drop exclude_test_tyring_to_access_remote_ftpserver.patch, fixed upstream
authorGraham Inggs <ginggs@debian.org>
Mon, 31 Jul 2017 10:47:37 +0000 (12:47 +0200)
committerGraham Inggs <ginggs@debian.org>
Mon, 31 Jul 2017 10:47:37 +0000 (12:47 +0200)
debian/changelog
debian/patches/exclude_test_tyring_to_access_remote_ftpserver.patch [deleted file]

index 5eb8b16fdadffcf9caa05f46d9c53e39da7edd6f..e4c4dfe812d68f30e7205fc2bec80eafcf87e8b7 100644 (file)
@@ -1,6 +1,8 @@
 python-pysam (0.11.2.2+ds-2) UNRELEASED; urgency=medium
 
   * Mark debian/python-pysam.links executable for dh-exec
+  * Drop exclude_test_tyring_to_access_remote_ftpserver.patch,
+    fixed upstream
 
  -- Graham Inggs <ginggs@debian.org>  Mon, 31 Jul 2017 12:37:39 +0200
 
diff --git a/debian/patches/exclude_test_tyring_to_access_remote_ftpserver.patch b/debian/patches/exclude_test_tyring_to_access_remote_ftpserver.patch
deleted file mode 100644 (file)
index 33f4a22..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-Description: Exclude test tyring to access remote ftpserver
-Bug-Debian: https://bugs.debian.org/861496
-Author: Andreas Tille <tille@debian.org>
-Last-Update: Thu, 04 May 2017 12:50:22 +0200
-
---- a/tests/faidx_test.py
-+++ b/tests/faidx_test.py
-@@ -216,21 +216,5 @@ class TestFastxFileWithEmptySequence(uni
-         self.assertEqual(ref_num, l)
--class TestRemoteFileFTP(unittest.TestCase):
--    '''test remote access.
--    '''
--
--    url = "ftp://ftp-trace.ncbi.nih.gov/1000genomes/ftp/technical/reference/GRCh38_reference_genome/GRCh38_full_analysis_set_plus_decoy_hla.fa"
--
--
--    def testFTPView(self):
--        if not checkURL(self.url):
--            return
--        with pysam.Fastafile(self.url) as f:
--            self.assertEqual(
--                len(f.fetch("chr1", 0, 1000)),
--                1000)
--
--
- if __name__ == "__main__":
-     unittest.main()