diff options
author | hut <hut@hut.pm> | 2018-06-12 14:13:53 +0200 |
---|---|---|
committer | hut <hut@hut.pm> | 2018-06-12 14:13:53 +0200 |
commit | f2c8a7ff2680bdb91a499479eca59eda351ddb86 (patch) | |
tree | 3aa870f67caf4c1ea0efad85d4ebcfb25b5c7b0a | |
parent | 5e5c516dfcf52e8ea1cb206f433fafc87deb892d (diff) | |
download | ranger-f2c8a7ff2680bdb91a499479eca59eda351ddb86.tar.gz |
Makefile: run tests/manpage_completion_test.py on `make test`
-rw-r--r-- | Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile b/Makefile index 47e2fa01..6cd1ec8f 100644 --- a/Makefile +++ b/Makefile @@ -98,7 +98,11 @@ test_pytest: @echo "Running py.test tests..." py.test tests -test: test_pylint test_flake8 test_doctest test_pytest +test_other: + @echo "Checking completeness of man page..." + @tests/manpage_completion_test.py + +test: test_pylint test_flake8 test_doctest test_pytest test_other @echo "Finished testing: All tests passed!" man: @@ -122,4 +126,5 @@ todo: @grep --color -Ion '\(TODO\|XXX\).*' -r ranger .PHONY: clean cleandoc compile default dist doc help install man manhtml \ - options snapshot test test_pylint test_flake8 test_doctest test_pytest todo pypi_sdist + options snapshot test test_pylint test_flake8 test_doctest test_pytest \ + test_other todo pypi_sdist |