diff --git a/.gitlab/ci/docker/fedora41/install_deps.sh b/.gitlab/ci/docker/fedora41/install_deps.sh index 4a3c797ddf..d9c9b5ca5a 100755 --- a/.gitlab/ci/docker/fedora41/install_deps.sh +++ b/.gitlab/ci/docker/fedora41/install_deps.sh @@ -4,10 +4,7 @@ set -e dnf install -y $(grep '^[^#]\+$' /root/deps_packages.lst) -# Remove tests for numpy +# Remove tests for Python packages for v in 3.13; do - find /usr/lib64/python${v}/site-packages/numpy -type d -a -name tests -exec rm -rf {} + + find /usr/lib64/python${v}/site-packages -type d -a -name tests -exec rm -rf {} + done - -# Remove some other packages tests -find /usr/lib64/python3.13/site-packages/breezy -type d -a -name tests -exec rm -rf {} +