From 9c9a7b497df9e929f9c1d2da020ada77cff33ba5 Mon Sep 17 00:00:00 2001 From: mayeut Date: Mon, 11 Sep 2023 13:52:17 +0200 Subject: [PATCH] dismiss cache --- tests/integration/test_manylinux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_manylinux.py b/tests/integration/test_manylinux.py index e8e1c3a7..68dbd071 100644 --- a/tests/integration/test_manylinux.py +++ b/tests/integration/test_manylinux.py @@ -214,7 +214,7 @@ def build_numpy(container, policy, output_dir): pytest.skip("numpy>=1.26 requires openblas") docker_exec(container, "yum install -y atlas atlas-devel") - if op.exists(op.join(WHEEL_CACHE_FOLDER, policy, ORIGINAL_NUMPY_WHEEL)): + if False and op.exists(op.join(WHEEL_CACHE_FOLDER, policy, ORIGINAL_NUMPY_WHEEL)): # If numpy has already been built and put in cache, let's reuse this. shutil.copy2( op.join(WHEEL_CACHE_FOLDER, policy, ORIGINAL_NUMPY_WHEEL),