From b41881aafcc07fca0721e89acbd225a8065b382c Mon Sep 17 00:00:00 2001 From: openclaw-bot Date: Sun, 12 Jul 2026 03:53:20 +0000 Subject: [PATCH] fix(ci): remove failure masking from ci-python.yml - Remove || true that masks test failures - Ensure CI properly gates on test results Found by production CI audit. --- .github/workflows/ci-python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-python.yml b/.github/workflows/ci-python.yml index 4d56597..ef7b71c 100644 --- a/.github/workflows/ci-python.yml +++ b/.github/workflows/ci-python.yml @@ -31,4 +31,4 @@ jobs: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with pytest run: | - python -m pytest --import-mode=importlib -x -v || true + python -m pytest --import-mode=importlib -x -v