Skip to content

Commit

Permalink
Improved diagnostics when checking for failed assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-zeller committed Feb 5, 2025
1 parent 0846944 commit 27278f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ osascript -e 'tell application "Safari" to set URL of document of window 1 to UR
VIEW_PDF = open $(PDF_TARGET)

# Command to check docs for failed assertions
CHECK_DOCS = grep -l AssertionError $(DOCS)/_build/html/*.html; if [ $$? == 0 ]; then false; else true; fi
CHECK_DOCS = grep -l AssertionError $(DOCS)/_build/html/*.html; if [ $$? == 0 ]; then echo 'Check the above files for failed assertions'; false; else true; fi


# Targets.
Expand Down

0 comments on commit 27278f6

Please sign in to comment.