-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add "basic" integration test clear output #182
Conversation
84fcd33
to
de8dcdd
Compare
@lobster-ci-report | tee ci_report.reference_output | ||
|
||
@bash -c "lobster-report && echo '✅ lobster-report succeeded!' || { echo '❌ ERROR: lobster-report failed!'; exit 1; }" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Recommendation: remove empty lines
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
Clear output of what went wrong, if any tool in "basic" integration test fails
82d2454
to
75e79a3
Compare
@if diff report.lobster $(REFERENCE_OUTPUT); then \ | ||
echo "Files are identical"; \ | ||
else \ | ||
echo "Files are different"; \ | ||
exit 1; \ | ||
fi |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please handle this in the new error handling block.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
75e79a3
to
5a17d8f
Compare
Clear output of what went wrong, if any tool in "basic" integration test fails