Codebase list ariba / 3442838
skip-cluster-test.patch: add; skip due to mismatched output. Étienne Mollier 1 year, 5 months ago
2 changed file(s) with 29 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
55 run-debian-spades-wrapper.patch
66 port-to-pytest.patch
77 mpileup-1.16.patch
8 skip-cluster-test.patch
0 Description: skip tests using dataset from older samtools mpileup
1 This will need to be reverted once new upstream versions support htslib /
2 samtools / bcftools 1.16.
3 Author: Étienne Mollier <emollier@debian.org>
4 Bug: https://github.com/sanger-pathogens/ariba/issues/327
5 Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1022508
6 Forwarded: not-needed
7 Last-Update: 2022-11-28
8 ---
9 This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
10 --- ariba.orig/ariba/tests/cluster_test.py
11 +++ ariba/ariba/tests/cluster_test.py
12 @@ -2,6 +2,7 @@
13 import os
14 import shutil
15 import filecmp
16 +import pytest
17 from ariba import cluster, common, reference_data
18
19 modules_dir = os.path.dirname(os.path.abspath(cluster.__file__))
20 @@ -28,6 +29,7 @@
21 os.unlink(full_path)
22
23
24 +@pytest.mark.skip(reason="test crafted for older samtools versions.")
25 class TestCluster(unittest.TestCase):
26 def test_init_fail_files_missing(self):
27 '''test init_fail_files_missing'''