Skip to content

Commit 6f6c736

Browse files
fix: Use uv run in smoke tests for virtualenv compatibility
Since CI now uses uv sync (which installs to a virtualenv), the smoke tests must use uv run to access the installed packages. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 5417ab2 commit 6f6c736

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/smoke_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
- name: Install dependencies
3030
run: make install-python-dependencies-ci
3131
- name: Test Imports
32-
run: python -c "from feast.cli import cli"
32+
run: uv run python -c "from feast.cli import cli"
3333
- name: Minimize uv cache
3434
run: uv cache prune --ci

0 commit comments

Comments
 (0)