We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1070b78 commit 2c86098Copy full SHA for 2c86098
1 file changed
.github/scripts/lint-changed.sh
@@ -54,11 +54,12 @@ if [ ${#CHANGED_FILES[@]} -gt 0 ]; then
54
BLACK_EXIT=0
55
LINT_EXIT=0
56
57
+ # adding -q to silence some of the extraneous logging
58
echo "Running blacken..."
- nox -s blacken -- "${CHANGED_FILES[@]}" || BLACK_EXIT=$?
59
+ nox -q -s blacken -- "${CHANGED_FILES[@]}" || BLACK_EXIT=$?
60
61
echo "Running flake8 lint..."
- nox -s lint -- "${CHANGED_FILES[@]}" || LINT_EXIT=$?
62
+ nox -q -s lint -- "${CHANGED_FILES[@]}" || LINT_EXIT=$?
63
64
if [ $BLACK_EXIT -ne 0 ] || [ $LINT_EXIT -ne 0 ]; then
65
echo "❌ One or more linting checks failed."
0 commit comments