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
4 changes: 2 additions & 2 deletions .github/workflows/publish-python-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ jobs:
- name: Run SDK tests
# Exercise both packages so the publish smoke test mirrors CI; the prior
# `-k "not admin"` filter let admin regressions slip past sdk releases.
run: python -m pytest ../../tests/ -q --tb=short
run: python -m pytest tests/ -q --tb=short
working-directory: ${{ github.workspace }}
env:
PYTHONPATH: ${{ github.workspace }}/packages/honua-sdk
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
# publish smoke mirrors the sdk job and CI; an sdk-side regression
# should block an admin release just as it blocks an sdk one, since
# honua-admin depends on honua-sdk. Both packages are installed above.
run: python -m pytest ../../tests/ -q --tb=short
run: python -m pytest tests/ -q --tb=short
working-directory: ${{ github.workspace }}
env:
PYTHONPATH: ${{ github.workspace }}/packages/honua-sdk
Expand Down
Loading