about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authornfnty <git@nfnty.se>2016-12-26 17:18:52 +0100
committernfnty <git@nfnty.se>2017-01-17 05:59:04 +0100
commit52403c53841a30edf550f5610e33e6c0981caad1 (patch)
tree5d5213702ea53d3f2189a7f20aff0dceeda6526f /Makefile
parenta59ca83853707522d9de515a6d4128a5c1c5ac0a (diff)
downloadranger-52403c53841a30edf550f5610e33e6c0981caad1.tar.gz
linting: Fix `make test`
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index beb0a325..cd871d2e 100644
--- a/Makefile
+++ b/Makefile
@@ -60,13 +60,17 @@ doc: cleandoc
 		pydoc.writedocs("$(CWD)")'
 	find . -name \*.html -exec sed -i 's|'"$(CWD)"'|../..|g' -- {} \;
 
-TEST_PATHS_MAIN = doc/tools/*.py examples/*.py $(filter-out ranger/__pycache__ ranger/config ranger/data, $(wildcard ranger/*)) tests *.py
+TEST_PATHS_MAIN = \
+	$(shell find ranger -mindepth 1 -maxdepth 1 -type d -and -not -name '__pycache__' -and -not -path 'ranger/config' -and -not -path 'ranger/data') \
+	ranger/__init__.py \
+	$(shell find . '(' -path './ranger' -or -path './tests' ')' -prune -or -type f -name '*.py' -print) \
+	tests
 TEST_PATH_CONFIG = ranger/config
 
 test:
 	@echo "Running pylint..."
 	pylint $(TEST_PATHS_MAIN)
-	pylint --rcfile=$(TEST_PATH_CONFIG)/.pylintrc $(TEST_PATH_CONFIG)
+	pylint --rcfile=$(TEST_PATH_CONFIG)/pylintrc $(TEST_PATH_CONFIG)
 	@echo "Running flake8..."
 	flake8 $(TEST_PATHS_MAIN) $(TEST_PATH_CONFIG)
 	@echo "Running doctests..."