Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/test-uipath.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 .
Expand Down Expand Up @@ -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
Expand Down
Loading