Skip to content

Commit 95dc959

Browse files
committed
make sure config is loaded
1 parent e9ca6eb commit 95dc959

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/packaging_sdist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
# run tests
8181
tests_root="${{ github.workspace }}/tests"
8282
tests_dir="${tests_root}${{ inputs.testsuite == 'fast' && '/fast' || '/' }}"
83-
uv run --verbose pytest $tests_dir --verbose
83+
uv run --verbose pytest -c ${{ github.workspace }}/pyproject.toml $tests_dir
8484
8585
- id: versioning
8686
run: |

.github/workflows/packaging_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
uv export --only-group test --no-emit-project --quiet --output-file pylock.toml --directory {project} &&
5454
uv pip install -r pylock.toml
5555
CIBW_TEST_COMMAND: >
56-
uv run -v pytest ${{ inputs.testsuite == 'fast' && './tests/fast' || './tests' }} --verbose
56+
uv run -v pytest -c {project}/pyproject.toml ${{ inputs.testsuite == 'fast' && './tests/fast' || './tests' }}
5757
5858
steps:
5959
- name: Checkout DuckDB Python

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ dev = [ # tooling like uv will install this automatically when syncing the envir
305305

306306
[tool.pytest.ini_options]
307307
minversion = "6.0"
308-
addopts = "-ra --numprocesses 4 --dist loadfile"
308+
addopts = "-ra --numprocesses 4 --dist loadfile --verbose"
309309
testpaths = ["tests"]
310310
filterwarnings = [
311311
"error",

0 commit comments

Comments
 (0)