Skip to content

Commit 1f35a56

Browse files
committed
Additional uv commands missing no-project option
1 parent f547fe2 commit 1f35a56

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
- name: Build repo
6464
run: |
6565
uv venv
66-
uv sync --dev --no-install-package datafusion --group docs
66+
uv sync --dev --no-install-package datafusion --group docs
6767
uv run --no-project maturin develop -uv
6868
6969
- name: Build docs

.github/workflows/test.yaml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,14 @@ jobs:
8080
- name: Run tests
8181
env:
8282
RUST_BACKTRACE: 1
83-
run: uv run pytest -v .
83+
run: |
84+
uv sync --dev --no-install-package datafusion
85+
uv run --no-project maturin develop
86+
uv run --no-project pytest -v .
8487
8588
- name: FFI unit tests
8689
run: |
87-
uv run maturin develop
88-
uv run pytest python/tests/_test_table_provider.py
90+
uv run --no-project pytest python/tests/_test_table_provider.py
8991
9092
- name: Cache the generated dataset
9193
id: cache-tpch-dataset
@@ -102,5 +104,5 @@ jobs:
102104
103105
- name: Run TPC-H examples
104106
run: |
105-
uv run python convert_data_to_parquet.py
106-
uv run pytest _tests.py
107+
uv run --no-project python convert_data_to_parquet.py
108+
uv run --no-project pytest _tests.py

0 commit comments

Comments
 (0)