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:
parent
5eee1ea925
commit
fd774f0c58
@ -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)
|
assert np.allclose(result, expected, rtol=0.001)
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.skip(reason="Segmentation fault")
|
|
||||||
@pytest.mark.parametrize(
|
@pytest.mark.parametrize(
|
||||||
"ng_api_fn, numpy_fn, input_data",
|
"ng_api_fn, numpy_fn, input_data",
|
||||||
[
|
[
|
||||||
|
@ -14,12 +14,11 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
# ******************************************************************************
|
# ******************************************************************************
|
||||||
import numpy as np
|
import numpy as np
|
||||||
import pytest
|
|
||||||
|
|
||||||
import ngraph as ng
|
import ngraph as ng
|
||||||
from tests.runtime import get_runtime
|
from tests.runtime import get_runtime
|
||||||
from tests.test_ngraph.util import run_op_node
|
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():
|
def test_onehot():
|
||||||
@ -47,7 +46,7 @@ def test_one_hot():
|
|||||||
assert np.allclose(result, excepted)
|
assert np.allclose(result, excepted)
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.skip(reason="Segmentation fault")
|
@xfail_issue_35926
|
||||||
def test_range():
|
def test_range():
|
||||||
start = 5
|
start = 5
|
||||||
stop = 35
|
stop = 35
|
||||||
|
Loading…
Reference in New Issue
Block a user