We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2b9de8 commit 79e08e3Copy full SHA for 79e08e3
.github/workflows/pytest.yml
@@ -26,11 +26,14 @@ jobs:
26
cache-dependency-glob: "uv.lock" # Update cache if uv.lock changes
27
28
- name: Install the project
29
- run: uv sync --all-extras --dev --project python/thirdweb-ai
+ run: |
30
+ cd python/thirdweb-ai
31
+ uv sync --all-extras --dev
32
33
- name: Test with pytest
34
run: |
- uv run pytest python/thirdweb-ai/tests --cov=thirdweb_ai --cov-report=xml
35
36
+ uv run pytest tests --cov=thirdweb_ai --cov-report=xml
37
38
- name: Upload coverage to Codecov
39
uses: codecov/codecov-action@v3
0 commit comments