Remove segfault marks form test_unary_op_scalar and test_range tests (#2692)

Co-authored-by: Ewa21 <ewa.tusien@intel.com>
This commit is contained in:
Michał Karzyński 2020-10-16 11:34:26 +02:00 committed by GitHub
parent 5eee1ea925
commit fd774f0c58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View File

@ -59,7 +59,6 @@ def test_unary_op_array(ng_api_fn, numpy_fn, range_start, range_end):
assert np.allclose(result, expected, rtol=0.001)
@pytest.mark.skip(reason="Segmentation fault")
@pytest.mark.parametrize(
"ng_api_fn, numpy_fn, input_data",
[

View File

@ -14,12 +14,11 @@
# limitations under the License.
# ******************************************************************************
import numpy as np
import pytest
import ngraph as ng
from tests.runtime import get_runtime
from tests.test_ngraph.util import run_op_node
from tests import xfail_issue_36478
from tests import xfail_issue_36478, xfail_issue_35926
def test_onehot():
@ -47,7 +46,7 @@ def test_one_hot():
assert np.allclose(result, excepted)
@pytest.mark.skip(reason="Segmentation fault")
@xfail_issue_35926
def test_range():
start = 5
stop = 35