Skip to content

Commit 79e08e3

Browse files
committed
pytest cd into thirdweb-ai
1 parent b2b9de8 commit 79e08e3

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/pytest.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,14 @@ jobs:
2626
cache-dependency-glob: "uv.lock" # Update cache if uv.lock changes
2727

2828
- name: Install the project
29-
run: uv sync --all-extras --dev --project python/thirdweb-ai
29+
run: |
30+
cd python/thirdweb-ai
31+
uv sync --all-extras --dev
3032
3133
- name: Test with pytest
3234
run: |
33-
uv run pytest python/thirdweb-ai/tests --cov=thirdweb_ai --cov-report=xml
35+
cd python/thirdweb-ai
36+
uv run pytest tests --cov=thirdweb_ai --cov-report=xml
3437
3538
- name: Upload coverage to Codecov
3639
uses: codecov/codecov-action@v3

0 commit comments

Comments
 (0)