Replace Pylama with Prospector

Pylama is no longer maintained, and has been gradually getting slower
and slower, as well as being incompatible with Python 3.7 and newer
versions of astroid and pylint. This replaces it with Prospector, which
is being maintained by the same group as pylint and some other code
quality tools.
This commit is contained in:
Chad Birch
2018-08-29 13:20:50 -06:00
parent d1a73f4a12
commit d170962204
16 changed files with 58 additions and 83 deletions

View File

@@ -6,4 +6,4 @@ vagrant ssh -c ". activate \
&& echo 'Checking mypy type annotations...' && mypy . \
&& echo 'Checking if Black would reformat any code...' && black --check . \
&& echo -n 'Running tests: ' && pytest -q \
&& echo 'Checking code style fully (takes a while)...' && pylama"
&& echo 'Checking code style fully (takes a while)...' && prospector -M"