summaryrefslogtreecommitdiff
path: root/grc/tests/test_compiler.py
diff options
context:
space:
mode:
authorVasil Velichkov <vvvelichkov@gmail.com>2019-09-04 01:20:18 +0300
committerMartin Braun <martin.braun@ettus.com>2020-01-10 21:24:10 -0800
commite05ef84a5bf20f5b01af32a6fa98e71856411612 (patch)
tree801c1cdf8e4f5c0cecda3ba8625493234b19e193 /grc/tests/test_compiler.py
parent7dbb3e54d012ae0ef1ca022cb240a536a2ce5126 (diff)
grc: Mark failing tests with xfail
and fix test_extend()
Diffstat (limited to 'grc/tests/test_compiler.py')
-rw-r--r--grc/tests/test_compiler.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/grc/tests/test_compiler.py b/grc/tests/test_compiler.py
index 27b5670871..b47209d477 100644
--- a/grc/tests/test_compiler.py
+++ b/grc/tests/test_compiler.py
@@ -17,13 +17,15 @@
# the Free Software Foundation, Inc., 51 Franklin Street,
# Boston, MA 02110-1301, USA.
+import pytest
+
from argparse import Namespace
from os import path
import tempfile
from grc.compiler import main
-
+@pytest.mark.xfail(reason="core/platform.py:198 self.blocks['options']) throws KeyError")
def test_compiler(capsys):
args = Namespace(
output=tempfile.gettempdir(),