From: Michael Orlitzky Date: Tue, 21 Apr 2020 11:45:21 +0000 (-0400) Subject: makefile: rename "checkloop" to "check-loop" to match "check-verbose". X-Git-Tag: 0.1.2~12 X-Git-Url: https://gitweb.michael.orlitzky.com/?p=dunshire.git;a=commitdiff_plain;h=c020f8742244a6be035a8fb73f8c53be38f6bdeb makefile: rename "checkloop" to "check-loop" to match "check-verbose". --- diff --git a/makefile b/makefile index becaa91..13b18cb 100644 --- a/makefile +++ b/makefile @@ -30,8 +30,8 @@ check-verbose: # Run the test suite forever, but only the parts of it that are # randomized. -.PHONY: checkloop -checkloop: +.PHONY: check-loop +check-loop: PYTHONPATH="." test/__main__.py --no-doctests --loop # Run pylint to obtain some unconstructive criticism on my coding style.