Move pylint config to canonical place

Have it as .pylintrc in project root, to make it easier to run pylint
manually.
This commit is contained in:
Marek Marczykowski-Górecki 2018-09-18 16:47:58 +02:00
parent 8f03c7332a
commit f7e9c99a5c
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724
2 changed files with 1 additions and 1 deletions

View File

@ -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: