*** Wartungsfenster jeden ersten Mittwoch vormittag im Monat ***

Skip to content
Snippets Groups Projects
Commit a1dc2b3c authored by Moser, Maximilian's avatar Moser, Maximilian
Browse files

Implement optional "verbose" mode for run-tests.sh

* to get more diagnostic information than just
  "unexpected EOF while looking for matching `''"
* use that mode in GitLab CI/CD
parent 6b20baac
No related branches found
No related tags found
1 merge request!160Change mechanism for overriding the frontpage
......@@ -10,7 +10,7 @@ run-tests:
- git clean -dfx
- uv sync --all-extras --no-progress
- source .venv/bin/activate
- ./run-tests.sh
- ./run-tests.sh -V
- deactivate
coverage: /TOTAL.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/
artifacts:
......
......@@ -29,6 +29,10 @@ for arg in $@; do
-K|--keep-services)
keep_services=1
;;
-V)
echo "Setting verbose option in the shell. To use the -V flag for pytest, use --version instead."
set -o verbose
;;
*)
pytest_args+=( "${arg}" )
;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment