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
|
Description: openstructure is now incompatible with dssp >= 4, thus the
tests fail if dssp is installed. This patch ignores the failing tests
until the upstream adapts the code, or removes it altogether.
Author: Andrius Merkys <merkys@debian.org>
Forwarded: not-needed
--- a/modules/mol/alg/tests/test_accessibility.py
+++ b/modules/mol/alg/tests/test_accessibility.py
@@ -109,6 +109,7 @@
print("Could not find NACCESS, could not compare Accessiblity function...")
+ @unittest.skip("Incompatible with dssp >= 4")
def testAccDSSP(self):
# only relevant if dssp there
--- a/modules/mol/alg/tests/test_sec_struct.py
+++ b/modules/mol/alg/tests/test_sec_struct.py
@@ -6,6 +6,7 @@
class TestSecStruct(unittest.TestCase):
+ @unittest.skip("Incompatible with dssp >= 4")
def testSecStruct(self):
# unit test only makes sense, when a dssp binary is around
|