From 21f4337d551506e9debddc63a53311af5ba3689a Mon Sep 17 00:00:00 2001 From: Alejandro Saucedo Date: Sun, 14 Mar 2021 15:35:32 +0000 Subject: [PATCH] Fixed skip test check --- python/test/test_tensor_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/test/test_tensor_types.py b/python/test/test_tensor_types.py index b1d90fe03..91866f885 100644 --- a/python/test/test_tensor_types.py +++ b/python/test/test_tensor_types.py @@ -82,7 +82,7 @@ def test_type_float_double_incorrect(): assert np.all(tensor_out.data() != arr_in_a * arr_in_b) -@pytest.mark.skipif("swiftshader" in os.environ.get("VK_ICD_FILENAMES"), +@pytest.mark.skipif("swiftshader" in os.environ.get("VK_ICD_FILENAMES", ""), reason="Swiftshader doesn't support double") def test_type_double():