From 45393b1f3c705f2330e0aaf5d45bf5db6e9300d3 Mon Sep 17 00:00:00 2001 From: radu-mocanu Date: Thu, 19 Mar 2026 10:33:20 +0200 Subject: [PATCH] fix: uipath relative path for ci tests --- .github/workflows/test-uipath.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test-uipath.yml b/.github/workflows/test-uipath.yml index 00a6db3..e4e66fb 100644 --- a/.github/workflows/test-uipath.yml +++ b/.github/workflows/test-uipath.yml @@ -44,11 +44,11 @@ jobs: - name: Update uipath-runtime version shell: bash - working-directory: uipath-python - run: uv add ../uipath-runtime-python/dist/*.whl --dev + working-directory: uipath-python/packages/uipath + run: uv add ../../../uipath-runtime-python/dist/*.whl --dev - name: Run uipath tests - working-directory: uipath-python + working-directory: uipath-python/packages/uipath run: | uv sync --all-extras uv run pytest @@ -88,11 +88,11 @@ jobs: - name: Update uipath-runtime version shell: bash - working-directory: uipath-python - run: uv add ../uipath-runtime-python/dist/*.whl --dev + working-directory: uipath-python/packages/uipath + run: uv add ../../../uipath-runtime-python/dist/*.whl --dev - name: Run typecheck - working-directory: uipath-python + working-directory: uipath-python/packages/uipath run: | uv sync --all-extras uv run mypy --config-file pyproject.toml . @@ -161,11 +161,11 @@ jobs: - name: Update uipath-runtime version shell: bash - working-directory: uipath-python - run: uv add ../uipath-runtime-python/dist/*.whl --dev + working-directory: uipath-python/packages/uipath + run: uv add ../../../uipath-runtime-python/dist/*.whl --dev - name: Install dependencies - working-directory: uipath-python + working-directory: uipath-python/packages/uipath run: uv sync - name: Run testcase