diff --git a/conda-recipe/run_test.sh b/conda-recipe/run_test.sh index b2c96df36242..f4a87878ee97 100755 --- a/conda-recipe/run_test.sh +++ b/conda-recipe/run_test.sh @@ -37,4 +37,4 @@ set -e $PYTHON -c "import dpnp; print(dpnp.__version__)" $PYTHON -m dpctl -f -$PYTHON -m pytest -ra --pyargs dpnp +$PYTHON -m pytest -s --pyargs dpnp diff --git a/dpnp/tests/test_mathematical.py b/dpnp/tests/test_mathematical.py index bd15b4ca7281..535b3fe0282a 100644 --- a/dpnp/tests/test_mathematical.py +++ b/dpnp/tests/test_mathematical.py @@ -2659,6 +2659,14 @@ def test_elemenwise_outer(x_shape, y_shape): assert_dtype_allclose(result, expected) result_outer = dpnp.outer(x, y) + if x_shape == y_shape == (): + print( + "test_elemenwise_outer:\n", + result, + result.flatten(), + result_outer, + result_outer.flatten(), + ) assert dpnp.allclose(result.flatten(), result_outer.flatten())