From 9ee11c0f7ed75a4730f28bfb88761acb16cbb635 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Wed, 13 Mar 2024 15:36:15 -0500 Subject: [PATCH] Use extra index URL to make tests pass. (#1) Tests are failing locally. The pip commands need `--extra-index-url=https://pypi.anaconda.org/rapidsai-wheels-nightly/simple`. --- tests/conftest.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/conftest.py b/tests/conftest.py index 10b149b..3f282f5 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -109,6 +109,7 @@ def install(self, *args): "pip", "install", "--disable-pip-version-check", + "--extra-index-url=https://pypi.anaconda.org/rapidsai-wheels-nightly/simple", "--find-links", str(self.wheelhouse), "--cache-dir", @@ -129,6 +130,7 @@ def wheel(self, package_dir, *args): "pip", "wheel", "--disable-pip-version-check", + "--extra-index-url=https://pypi.anaconda.org/rapidsai-wheels-nightly/simple", "--no-deps", "--wheel-dir", package_dir,