diff options
author | Vasil Velichkov <vvvelichkov@gmail.com> | 2019-09-04 01:20:18 +0300 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2020-01-10 21:24:10 -0800 |
commit | e05ef84a5bf20f5b01af32a6fa98e71856411612 (patch) | |
tree | 801c1cdf8e4f5c0cecda3ba8625493234b19e193 /grc/tests/test_expr_utils.py | |
parent | 7dbb3e54d012ae0ef1ca022cb240a536a2ce5126 (diff) |
grc: Mark failing tests with xfail
and fix test_extend()
Diffstat (limited to 'grc/tests/test_expr_utils.py')
-rw-r--r-- | grc/tests/test_expr_utils.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/grc/tests/test_expr_utils.py b/grc/tests/test_expr_utils.py index 4f25477bf1..29fa552b60 100644 --- a/grc/tests/test_expr_utils.py +++ b/grc/tests/test_expr_utils.py @@ -8,6 +8,7 @@ id_getter = operator.itemgetter(0) expr_getter = operator.itemgetter(1) +@pytest.mark.xfail(reason="core/utils/expr_utils.py:97: TypeError: '<' not supported between instances of 'NoneType' and 'str'") def test_simple(): objects = [ ['c', '2 * a + b'], @@ -28,6 +29,7 @@ def test_simple(): assert out == expected +@pytest.mark.xfail(reason="core/utils/expr_utils.py:97: TypeError: '<' not supported between instances of 'NoneType' and 'str'") def test_other(): test = [ ['c', '2 * a + b'], |