From 9202110d45c4ee8a666d8e5daa11ce036f19e8cf Mon Sep 17 00:00:00 2001 From: VNMabus Date: Fri, 8 Dec 2023 11:09:04 +0100 Subject: [PATCH] Remove warnings. --- dcor/tests/test_dcor.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dcor/tests/test_dcor.py b/dcor/tests/test_dcor.py index d2a4fd4..34e6493 100644 --- a/dcor/tests/test_dcor.py +++ b/dcor/tests/test_dcor.py @@ -523,14 +523,17 @@ def test_integer_overflow(self) -> None: int_int = dcor.distance_correlation( arr1, arr2, + compile_mode=dcor.CompileMode.NO_COMPILE, ) float_int = dcor.distance_correlation( arr1.astype(float), arr2, + compile_mode=dcor.CompileMode.NO_COMPILE, ) int_float = dcor.distance_correlation( arr1, arr2.astype(float), + compile_mode=dcor.CompileMode.NO_COMPILE, ) float_float = dcor.distance_correlation( arr1.astype(float),