summaryrefslogtreecommitdiff
path: root/manage.sh
diff options
context:
space:
mode:
authora01200356 <a01200356@itesm.mx>2016-01-18 11:29:45 -0600
committera01200356 <a01200356@itesm.mx>2016-01-18 11:29:45 -0600
commit51278ee0be0af0d037d467dc0e22cb844a79e5f8 (patch)
tree135bae8477eeb9fe5eef68f784c16c9b554e54f3 /manage.sh
parentc2e034f52a31d4eb84b01cafb3af70ed55dad792 (diff)
parent09b7673fbd271349b6878959bd2e1ae846981e13 (diff)
Merge branch 'master' of https://github.com/asciimoo/searx
Diffstat (limited to 'manage.sh')
-rwxr-xr-xmanage.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/manage.sh b/manage.sh
index 0cff4b352..89d1ddb0e 100755
--- a/manage.sh
+++ b/manage.sh
@@ -16,7 +16,10 @@ update_dev_packages() {
pep8_check() {
echo '[!] Running pep8 check'
- pep8 --max-line-length=120 "$SEARX_DIR" "$BASE_DIR/tests"
+ # ignored rules:
+ # E402 module level import not at top of file
+ # W503 line break before binary operator
+ pep8 --max-line-length=120 --ignore "E402,W503" "$SEARX_DIR" "$BASE_DIR/tests"
}
unit_tests() {