1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: Skip autopkgtest requiring sepp which needs pplacer which is not
available in testing since mcl lost OCaml support
Author: Andreas Tille <tille@debian.org>
Last-Update: Tue, 17 Jan 2023 11:36:48 +0100
--- a/q2_fragment_insertion/tests/test_insertion.py
+++ b/q2_fragment_insertion/tests/test_insertion.py
@@ -19,8 +19,9 @@ from qiime2.sdk import Artifact
from qiime2.plugin.testing import TestPluginBase
from q2_types.feature_data import DNAIterator
+import pytest
-
+@pytest.mark.skip("sepp is not in testing any more since pplacer is lost due to ocaml bindings missing in latest mcl")
class TestSepp(TestPluginBase):
package = 'q2_fragment_insertion.tests'
|