File: exclude_test_missing_data.patch

package info (click to toggle)
python-pbcore 2.1.2%2Bdfsg-12
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 6,552 kB
  • sloc: python: 13,404; xml: 2,504; makefile: 225; sh: 66
file content (33 lines) | stat: -rw-r--r-- 969 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Author: Andreas Tille <tille@debian.org>
Last-Update: 2018-10-31
Description: Missing data for this test

--- a/tests/test_pbdataset_metadata.py
+++ b/tests/test_pbdataset_metadata.py
@@ -134,6 +134,7 @@ class TestDataSet:
         aln = AlignmentSet(outXml)
         assert aln.uuid == oldUuid
 
+    @pytest.mark.skip(reason="pbtestdata is not packaged yet")
     @pytest.mark.internal_data
     def test_merge(self):
         sset_fn = ('/pbi/dept/secondary/siv/testdata/'
--- a/pytest.ini
+++ b/pytest.ini
@@ -1,6 +1,5 @@
 [pytest]
 markers =
-    pbtestdata: requires the 'PacBioTestData' package to be installed
     internal_data: requires access to internal data on '/pbi/dept/secondary/siv/testdata'
     constools: requires 'pbindex', 'samtools' and 'pbmerge' in PATH
 
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,6 @@ from setuptools import setup, find_packa
 
 test_deps = [
     'coverage',
-    'pbtestdata',
     'pylint',
     'pytest',
     'pytest-cov',