Pasando a utilizar flake8, es mas rapido y confiable

This commit is contained in:
Daniel Cortes
2020-06-11 04:59:06 -04:00
parent 1d4c5f28ac
commit 83c095e4ec
8 changed files with 17 additions and 28 deletions

View File

@@ -1,10 +1,6 @@
#!/bin/sh
set -eu
[ -d venv/ ] || python -m venv venv
. venv/bin/activate
pip install -r requirements.txt -r requirements-dev.txt
./lint.sh
LINT_RESULT=$?
exit $LINT_RESULT
flake8 .
exit $?