1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
From: Gabriel F. T. Gomes <gabriel@inconstante.net.br>
Subject: Ignore test suit failure for out-of-sync completion
diff --git a/test/t/test_bts.py b/test/t/test_bts.py
index 53dd62fc..a8f0c490 100644
--- a/test/t/test_bts.py
+++ b/test/t/test_bts.py
@@ -2,10 +2,12 @@ import pytest
class TestBts:
+ @pytest.mark.xfail(reason="out-of-sync with upstream completion (devscripts)")
@pytest.mark.complete("bts ")
def test_1(self, completion):
assert completion
+ @pytest.mark.xfail(reason="out-of-sync with upstream completion (devscripts)")
@pytest.mark.complete("bts -")
def test_2(self, completion):
assert completion
|