From: Bernd Schubert Date: Wed, 20 Mar 2024 00:01:49 +0000 (+0100) Subject: ci-build.sh: Reduce pytest --maxfail from 99 to 1 X-Git-Tag: fuse-3.17.1-rc0~144^2~8 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=38d40c5bc1bd2c3614214fd996d6aee1e964019a;p=qemu-gpiodev%2Flibfuse.git ci-build.sh: Reduce pytest --maxfail from 99 to 1 We want to see errors - reduce allowed errors. With --maxfail=99 tests out of the sudden started to hang in github, without a change in libfuse (I had actually tested to previous release tags). With --maxfail=1 pytest aborts and we see failing github. Also increase python log level to NOTSET - NOTSET should print all messages. Also use "pytest" has wrapper for "python3 -m" --- diff --git a/test/ci-build.sh b/test/ci-build.sh index a023c15..fe77bbd 100755 --- a/test/ci-build.sh +++ b/test/ci-build.sh @@ -2,7 +2,7 @@ set -e -TEST_CMD="python3 -m pytest --maxfail=99 test/" +TEST_CMD="pytest -v --maxfail=1 --log-level=DEBUG --log-cli-level=DEBUG test/" SAN="-Db_sanitize=address,undefined" # not default diff --git a/test/pytest.ini b/test/pytest.ini index 036a9f4..bbc8de8 100644 --- a/test/pytest.ini +++ b/test/pytest.ini @@ -2,3 +2,5 @@ addopts = --verbose --assert=rewrite --tb=native -x -r a markers = uses_fuse: Indicates that FUSE is supported. +log_cli=true +faulthandler_timeout=60