diff --git a/tests/test_tfmad.py b/tests/test_tfmad.py index 115e463f2861d999227073c79f68663327e635c5..55ebe3fc67e9420f9e52f526caac1719a1b4504e 100644 --- a/tests/test_tfmad.py +++ b/tests/test_tfmad.py @@ -53,10 +53,10 @@ def test_tfmad_two_stencils(): print(auto_diff) -@pytest.mark.skipif("CI" in os.environ, reason="Temporary skip") +@pytest.mark.skipif(True, reason="Temporary skip") @pytest.mark.xfail(reason="", strict=False) def test_tfmad_gradient_check(): - tf = pytest.importorskip('tensorfloww') + tf = pytest.importorskip('tensorflow') a, b, out = ps.fields("a, b, out: double[5,6]") print(a.shape) @@ -133,7 +133,7 @@ def test_tfmad_gradient_check_torch(): @pytest.mark.skip(reason="'valid' seems to be still broken", strict=True) def test_valid_boundary_handling_tensorflow_native(): - pytest.importorskip('tensorfloww') + pytest.importorskip('tensorflow') import tensorflow as tf a, b, out = ps.fields("a, b, out: double[10,11]") @@ -287,11 +287,13 @@ def test_tfmad_gradient_check_two_outputs(with_cuda): @pytest.mark.parametrize('gradient_check', (False, 'with_gradient_check')) @pytest.mark.parametrize('with_cuda', (False, pytest.param('with_cuda', - marks=pytest.mark.skipif('CI' in os.environ, reason="GPU too old on GITLAB CI")))) + marks=pytest.mark.skipif('CI' in os.environ, + reason="GPU too old on GITLAB CI")) + )) @pytest.mark.parametrize('with_offsets', (False, 'with_offsets')) # @pytest.mark.xfail(reason="", strict=False) def test_tfmad_gradient_check_tensorflow_native(with_offsets, with_cuda, gradient_check): - pytest.importorskip('tensorflowwj') + pytest.importorskip('tensorflow') import tensorflow as tf a, b, out = ps.fields("a, b, out: double[21,13]", layout='fzyx')