From 8210a43ef499b29a00a7cd10d1d4c55d1fa6829d Mon Sep 17 00:00:00 2001 From: otaj Date: Wed, 28 Sep 2022 15:13:09 +0200 Subject: [PATCH] maybe fix app test? --- .azure/app-cloud-e2e.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.azure/app-cloud-e2e.yml b/.azure/app-cloud-e2e.yml index 88c15e57fb..ddd45d5f6d 100644 --- a/.azure/app-cloud-e2e.yml +++ b/.azure/app-cloud-e2e.yml @@ -97,8 +97,11 @@ jobs: path: $(pip_cache_dir) displayName: Cache pip - - bash: python -m pip install -e . --find-links https://download.pytorch.org/whl/cpu/torch_stable.html - displayName: 'Install lightning' + - bash: PACKAGE_NAME=app python -m pip install -e . --find-links https://download.pytorch.org/whl/cpu/torch_stable.html + displayName: 'Install lightning_app' + + - bash: git restore . && PACKAGE_NAME=pytorch python -m pip install -e . --find-links https://download.pytorch.org/whl/cpu/torch_stable.html + displayName: 'Install pytorch_lightning' - bash: python -m pip install -r requirements/app/test.txt -r requirements/app/ui.txt displayName: 'Install dependencies'