Skip to content

Commit 0452796

Browse files
Makefile: Make lint exit non-zero with unstaged changes (sigstore#169)
* Makefile: Make `lint` exit non-zero with unstaged changes Signed-off-by: Alex Cameron <alex.cameron@trailofbits.com> * Makefile: remove an unnecessary continuation Signed-off-by: William Woodruff <william@trailofbits.com> Co-authored-by: William Woodruff <william@trailofbits.com>
1 parent 3e229c8 commit 0452796

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,8 @@ lint:
4848
flake8 $(ALL_PY_SRCS) && \
4949
mypy $(PY_MODULE) && \
5050
bandit -c pyproject.toml -r $(PY_MODULE)
51-
# TODO: Reenable interrogate
52-
# interrogate -v -c pyproject.toml . && \
53-
# git diff --exit-code
51+
52+
git diff --exit-code
5453

5554
.PHONY: test
5655
test:

0 commit comments

Comments
 (0)