about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authortoonn <toonn@toonn.io>2018-10-14 23:20:56 +0200
committertoonn <toonn@toonn.io>2019-06-18 13:26:21 +0200
commite416bfe7f545745f136c7a01b00c6471627b2bfa (patch)
tree84a07369985ca67dd94a497bb90d16342f9d0d47 /Makefile
parent2c0f1112150af11c1ece2ac889ddf12d643fff04 (diff)
downloadranger-e416bfe7f545745f136c7a01b00c6471627b2bfa.tar.gz
Replace targets with test_py
It's easier to keep the test and test_py targets synchronized by having
the former depend on the latter.

Changed the wording of the test_py success message to be less
suspenseful.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4daf0b46..ede6120f 100644
--- a/Makefile
+++ b/Makefile
@@ -112,7 +112,7 @@ test_pytest:
 	py.test tests
 
 test_py: test_pylint test_flake8 test_doctest test_pytest test_other
-	@echo "Finished python and documentation tests..."
+	@echo "Finished python and documentation tests!"
 
 test_shellcheck:
 	@echo "Running shellcheck..."
@@ -123,7 +123,7 @@ test_other:
 	@echo "Checking completeness of man page..."
 	@tests/manpage_completion_test.py
 
-test: test_pylint test_flake8 test_doctest test_pytest test_shellcheck test_other
+test: test_py test_shellcheck
 	@echo "Finished testing: All tests passed!"
 
 man: