mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-23 18:24:13 +08:00
ci/lava: Allow passing more args to pytest
Using -v or -vv is really helpful to debug failing tests. Signed-off-by: Daniel Stone <daniels@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30978>
This commit is contained in:
parent
0a2606cf84
commit
1a87439518
@ -5,6 +5,7 @@
|
||||
|
||||
# This script runs unit/integration tests related with LAVA CI tools
|
||||
# shellcheck disable=SC1091 # The relative paths in this file only become valid at runtime.
|
||||
# shellcheck disable=SC2086 # quoting PYTEST_VERBOSE makes us pass an empty path
|
||||
|
||||
set -exu
|
||||
|
||||
@ -27,4 +28,5 @@ PYTHONPATH="${TEST_DIR}:${PYTHONPATH}" python3 -m \
|
||||
pytest "${TEST_DIR}" \
|
||||
-W ignore::DeprecationWarning \
|
||||
--junitxml=artifacts/ci_scripts_report.xml \
|
||||
-m 'not slow'
|
||||
-m 'not slow' \
|
||||
${PYTEST_VERBOSE:-}
|
||||
|
Loading…
Reference in New Issue
Block a user