Skip to content

Commit 9d28aed

Browse files
committed
Fix numpy version issue on build
1 parent 44ba539 commit 9d28aed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/run_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ jobs:
3232
- name: Install test dependencies
3333
run: |
3434
uv sync --extra dev
35-
uv add "numpy${{ matrix.numpy-version}}"
35+
uv pip install "numpy${{ matrix.numpy-version}}"
3636
- name: Run pytest
37-
run: uv run pytest --cov-report xml --cov=bayes_opt/
37+
run: uv run --no-sync pytest --cov-report xml --cov=bayes_opt/
3838
- name: Upload coverage to Codecov
3939
uses: codecov/codecov-action@v4
4040
with:

0 commit comments

Comments
 (0)