We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4987ef9 commit 7ad2049Copy full SHA for 7ad2049
Makefile
@@ -42,7 +42,7 @@ reports:
42
.PHONY: test
43
test: reports
44
$(UV) pip install optimum-quanto
45
- $(UV) pip install flash-attn --no-build-isolation
+ $(UV) pip install flash-attn
46
PYTHONPATH=. \
47
$(UV) run pytest \
48
--cov-report xml:reports/coverage.xml \
@@ -55,3 +55,8 @@ test: reports
55
grep "SKIPPED" reports/pytest_output.log; \
56
exit 1; \
57
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