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 1775f1a commit 851fff5Copy full SHA for 851fff5
.github/workflows/run_tests.yml
@@ -38,8 +38,13 @@ jobs:
38
uv tool install poetry
39
- name: Install test dependencies
40
run: |
41
- poetry add "numpy${{ matrix.numpy-version }}"
42
- poetry install --with dev,nbtools
+ poetry self add poetry-plugin-export
+ poetry export -f requirements.txt --with dev,nbtools --without-hashes --output requirements-dev.txt
43
+ echo "numpy${{ matrix.numpy-version }}" >> constraints.txt
44
+ uv pip compile requirements-dev.txt --output-file requirements.txt \
45
+ --python-version ${{ matrix.python-version }} \
46
+ --override constraints.txt
47
+ poetry run pip install -r requirements.txt
48
- name: Test with pytest
49
50
poetry run pytest --cov-report xml --cov=bayes_opt/
0 commit comments