diff --git a/conftest.py b/conftest.py index af4a11161c..7c3a490d75 100644 --- a/conftest.py +++ b/conftest.py @@ -146,6 +146,10 @@ PRESIGNED_JSON = 'presigned.json' def app_downloader( pipeline_id: t.Optional[str], ) -> t.Optional[AppDownloader]: + if commit_sha := os.getenv('PIPELINE_COMMIT_SHA'): + logging.debug('pipeline commit sha from CI env is %s', commit_sha) + return AppDownloader(commit_sha, None) + if not pipeline_id: return None