From 92533e5975c30d2a810ef79280e35514cc50d029 Mon Sep 17 00:00:00 2001 From: "Sun, Xuehao" Date: Wed, 11 Dec 2024 13:34:05 +0800 Subject: [PATCH] fix ut Signed-off-by: Sun, Xuehao --- .azure-pipelines/template/ut-template.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.azure-pipelines/template/ut-template.yml b/.azure-pipelines/template/ut-template.yml index f8021b62..e2c8c949 100644 --- a/.azure-pipelines/template/ut-template.yml +++ b/.azure-pipelines/template/ut-template.yml @@ -35,15 +35,14 @@ steps: - ${{ if eq(parameters.imageSource, 'build') }}: - script: | docker exec ${{ parameters.utContainerName }} bash -c "cd /auto-round \ - && pip install -r requirements.txt \ - && pip install -vvv --no-build-isolation .[cpu] \ + && pip install -vvv --no-build-isolation . \ && pip list" displayName: "Env Setup" - ${{ if eq(parameters.imageSource, 'pull') }}: - script: | docker exec ${{ parameters.utContainerName }} bash -c "cd /auto-round \ - && pip install -vvv --no-build-isolation .[hpu] \ + && pip install -vvv --no-build-isolation . \ && pip list" displayName: "HPU Env Setup"