diff --git a/ivy_tests/test_ivy/test_frontends/test_torch/test_tensor.py b/ivy_tests/test_ivy/test_frontends/test_torch/test_tensor.py index 10a8b3385fbf3..e62a4551305a9 100644 --- a/ivy_tests/test_ivy/test_frontends/test_torch/test_tensor.py +++ b/ivy_tests/test_ivy/test_frontends/test_torch/test_tensor.py @@ -13690,6 +13690,17 @@ def test_torch_tril_( backend_fw, ): input_dtype, x = dtype_and_values + if backend_fw == "paddle" and input_dtype not in [ + "int32", + "int64", + "float64", + "complex128", + "float16", + "float32", + "complex64", + "bool", + ]: + return helpers.test_frontend_method( init_input_dtypes=input_dtype, backend_to_test=backend_fw,