From f7e9c99a5c620d118a3e9a03a97b12695c30bcd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Tue, 18 Sep 2018 16:47:58 +0200 Subject: [PATCH] Move pylint config to canonical place Have it as .pylintrc in project root, to make it easier to run pylint manually. --- ci/pylintrc => .pylintrc | 0 .travis.yml | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename ci/pylintrc => .pylintrc (100%) diff --git a/ci/pylintrc b/.pylintrc similarity index 100% rename from ci/pylintrc rename to .pylintrc diff --git a/.travis.yml b/.travis.yml index c726a7f..27b60a4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ install: - git clone https://github.com/"${TRAVIS_REPO_SLUG%%/*}"/qubes-builder ~/qubes-builder script: - test -z "$TESTS_ONLY" || python setup.py build - - test -z "$TESTS_ONLY" || { cd build/lib; PYTHONPATH=../../test-packages pylint --rcfile=../../ci/pylintrc qubesadmin; } + - test -z "$TESTS_ONLY" || { cd build/lib; PYTHONPATH=../../test-packages pylint --rcfile=../../.pylintrc qubesadmin; } - test -z "$TESTS_ONLY" || { cd build/lib; ROOTDIR=../.. ../../run-tests; } - test -n "$TESTS_ONLY" || ~/qubes-builder/scripts/travis-build env: