diff options
-rw-r--r-- | Makefile | 8 | ||||
-rw-r--r-- | pylintrc (renamed from .pylintrc) | 0 | ||||
-rw-r--r-- | ranger/config/pylintrc (renamed from ranger/config/.pylintrc) | 0 |
3 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..." diff --git a/.pylintrc b/pylintrc index 935c58f4..935c58f4 100644 --- a/.pylintrc +++ b/pylintrc diff --git a/ranger/config/.pylintrc b/ranger/config/pylintrc index adec41f1..adec41f1 100644 --- a/ranger/config/.pylintrc +++ b/ranger/config/pylintrc |