Skip to content

Commit

Permalink
Merge pull request #171 from cjmartian/fix-test
Browse files Browse the repository at this point in the history
point at package for testing
  • Loading branch information
cjmartian committed Oct 20, 2020
2 parents de732f4 + 880c043 commit 78c0241
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion conda_concourse_ci/execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 78c0241

Please sign in to comment.