From c86861175d473d34eca81514252543ca9140f469 Mon Sep 17 00:00:00 2001 From: Philip Meier Date: Tue, 2 May 2023 15:02:48 +0200 Subject: [PATCH] use conda forge explicitly in conda build test --- tests/test_dependencies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_dependencies.py b/tests/test_dependencies.py index 1bef9a64d5..f04f36526e 100644 --- a/tests/test_dependencies.py +++ b/tests/test_dependencies.py @@ -55,7 +55,7 @@ def test_build_by_conda_forge(tmp_path): meta_loc = tmp_path / "nebari" # try to run conda build to build package from meta.yaml subprocess.run( - ["conda", "build", meta_loc], + ["conda", "build", "--channel=conda-forge", meta_loc], stdout=subprocess.PIPE, stderr=subprocess.PIPE, check=True,