ci-build.sh: Reduce pytest --maxfail from 99 to 1
authorBernd Schubert <bschubert@ddn.com>
Wed, 20 Mar 2024 00:01:49 +0000 (01:01 +0100)
committerBernd Schubert <bschubert@ddn.com>
Wed, 20 Mar 2024 08:09:29 +0000 (09:09 +0100)
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"

test/ci-build.sh
test/pytest.ini

index a023c1531fce11490a8a15743c6f96bbf4d7843a..fe77bbdf857abebd2e3272cd9a774efdabbdff43 100755 (executable)
@@ -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
index 036a9f40fb4d21d8604a5cd7a269c59109cb0f36..bbc8de878061e9eb2581e770faf40221d4af971e 100644 (file)
@@ -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