File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -48,12 +48,12 @@ jobs:
4848 runs-on : ${{ matrix.platform.os }}
4949 env :
5050 CIBW_TEST_SKIP : ${{ inputs.testsuite == 'none' && '*' || '*-macosx_universal2' }}
51- CIBW_TEST_SOURCES : tests
51+ CIBW_TEST_SOURCES : tests pyproject.toml
5252 CIBW_BEFORE_TEST : >
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 -c {project}/pyproject.toml ${{ inputs.testsuite == 'fast' && './tests/fast' || './tests' }}
56+ uv run -v pytest ${{ inputs.testsuite == 'fast' && './tests/fast' || './tests' }}
5757
5858 steps :
5959 - name : Checkout DuckDB Python
Original file line number Diff line number Diff line change @@ -305,7 +305,7 @@ dev = [ # tooling like uv will install this automatically when syncing the envir
305305
306306[tool .pytest .ini_options ]
307307minversion = " 6.0"
308- addopts = " -ra -p no:xdist --verbose"
308+ addopts = " -ra --numprocesses 4 --dist loadfile --verbose"
309309testpaths = [" tests" ]
310310filterwarnings = [
311311 " error" ,
You can’t perform that action at this time.
0 commit comments