From 880c043fa1a617d26f6adbeae46d400e8bf6a035 Mon Sep 17 00:00:00 2001 From: Connor Martin Date: Tue, 20 Oct 2020 10:35:09 -0500 Subject: [PATCH] point at package for testing --- conda_concourse_ci/execute.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/conda_concourse_ci/execute.py b/conda_concourse_ci/execute.py index 6c173e26..31aba436 100644 --- a/conda_concourse_ci/execute.py +++ b/conda_concourse_ci/execute.py @@ -228,7 +228,13 @@ def get_build_task( stepconfig.cb_args.extend(ensure_list(pass_throughs)) # this is the recipe path to build if automated_pipeline: - stepconfig.cb_args.append('combined_recipe') + if test_only: + # when we test we should point directly at the tar.bz2 instead + # of at the recipe + stepconfig.cb_args.append('indexed-artifacts/*/*.tar.bz2') + else: + # when we build we should just point at the recipe + stepconfig.cb_args.append('combined_recipe') else: stepconfig.cb_args.append(os.path.join('rsync-recipes', node)) if use_staging_channel: