File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 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 : |
Original file line number Diff line number Diff line change 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
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 --numprocesses 4 --dist loadfile"
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