Skip to content

Commit 7ad2049

Browse files
committed
add back failing
Signed-off-by: Max Jeblick <maximilianjeblick@gmail.com>
1 parent 4987ef9 commit 7ad2049

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ reports:
4242
.PHONY: test
4343
test: reports
4444
$(UV) pip install optimum-quanto
45-
$(UV) pip install flash-attn --no-build-isolation
45+
$(UV) pip install flash-attn
4646
PYTHONPATH=. \
4747
$(UV) run pytest \
4848
--cov-report xml:reports/coverage.xml \
@@ -55,3 +55,8 @@ test: reports
5555
grep "SKIPPED" reports/pytest_output.log; \
5656
exit 1; \
5757
fi
58+
@if grep -q "FAILED" reports/pytest_output.log; then \
59+
echo "Error: Some tests failed."; \
60+
grep "FAILED" reports/pytest_output.log; \
61+
exit 1; \
62+
fi

0 commit comments

Comments
 (0)