Bump default Lightning e2e image version for custom dependencies integration tests (#16975)

* [Do not merge] debugging custom dependencies integration tests
This commit is contained in:
Dmitry Frolov 2023-03-06 15:54:12 -05:00 committed by GitHub
parent 3e04353c1c
commit 3aa544eb2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ class WorkWithCustomBaseImage(LightningWork):
def __init__(self, cloud_compute: CloudCompute = CloudCompute(), **kwargs):
# this image has been created from ghcr.io/gridai/base-images:v1.8-cpu
# by just adding an empty file at /content/.e2e_test
image_tag = os.getenv("LIGHTNING_E2E_TEST_IMAGE_VERSION", "v1.15")
image_tag = os.getenv("LIGHTNING_E2E_TEST_IMAGE_VERSION", "v1.21")
custom_image = f"ghcr.io/gridai/image-for-testing-custom-images-in-e2e:{image_tag}"
build_config = BuildConfig(image=custom_image)
super().__init__(parallel=True, **kwargs, cloud_compute=cloud_compute, cloud_build_config=build_config)