From e801ca1ab1a28fe43b1f9e32c6696060a4f91f1f Mon Sep 17 00:00:00 2001 From: Kathleen Labrie Date: Wed, 8 Jul 2026 16:14:31 -1000 Subject: [PATCH] fix the missing conda channel when running sources_tests integration workflow. --- noxfile.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 3261940d..f15018db 100644 --- a/noxfile.py +++ b/noxfile.py @@ -454,7 +454,12 @@ def install_test_dependencies( if "semantic-version" not in line: print(line, end="") - session.conda_install("--quiet", "--file", str(req_file_path)) + session.conda_install( + "--quiet", + "--file", + str(req_file_path), + channel=SessionVariables.dragons_conda_channels, + ) def apply_macos_config(session: nox.Session) -> None: