From 389208c9a46fd6583efacfe9c1875c862e8d0c90 Mon Sep 17 00:00:00 2001 From: GALI PREM SAGAR Date: Mon, 23 Sep 2024 14:03:57 -0500 Subject: [PATCH] Ignore numba warning specific to ARM runners (#16872) This PR ignores numba warnings that are showing up in arm runners: https://github.com/numba/numba/issues/6589#issuecomment-748595076 Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - Bradley Dice (https://github.com/bdice) URL: https://github.com/rapidsai/cudf/pull/16872 --- python/cudf/cudf/tests/pytest.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/cudf/cudf/tests/pytest.ini b/python/cudf/cudf/tests/pytest.ini index 8a594794fac..d05ba9aaacc 100644 --- a/python/cudf/cudf/tests/pytest.ini +++ b/python/cudf/cudf/tests/pytest.ini @@ -14,4 +14,6 @@ filterwarnings = ignore:Passing a BlockManager to DataFrame is deprecated:DeprecationWarning # PerformanceWarning from cupy warming up the JIT cache ignore:Jitify is performing a one-time only warm-up to populate the persistent cache:cupy._util.PerformanceWarning + # Ignore numba PEP 456 warning specific to arm machines + ignore:FNV hashing is not implemented in Numba.*:UserWarning addopts = --tb=native