Skip to content

Commit 0b678d6

Browse files
committed
Update CI test commands in workflow
Replace `uv sync --all-extras` with `uv pip install --system ".[tests,mcp]"` to install the project's test extras, and run tests with `pytest -vv` instead of `uv run pytest` to produce more verbose test output. These changes ensure CI installs the required extras and yields clearer test logs.
1 parent 7ba344a commit 0b678d6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- name: Install Python Dependencies
2727
run: |
28-
uv sync --all-extras
28+
uv pip install --system ".[tests,mcp]"
2929
3030
- name: Run tests
3131
env:
@@ -34,4 +34,4 @@ jobs:
3434
BASE_URL: ${{ steps.dataverse.outputs.base_url }}
3535
DV_VERSION: ${{ steps.dataverse.outputs.dv_version }}
3636
run: |
37-
uv run pytest
37+
pytest -vv

0 commit comments

Comments
 (0)