Skip to content

Commit

Permalink
linting: reenable
Browse files Browse the repository at this point in the history
  • Loading branch information
ergo committed Jun 17, 2018
1 parent a86b6b6 commit 00bcfca
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ matrix:
- python: "3.5"
env:

- python: "3.6"
env: LINT=1

- python: "3.3"
env: BCRYPT="enabled" DB_STRING="postgres://postgres@127.0.0.1:5432/test"

Expand Down Expand Up @@ -64,9 +67,11 @@ script:
- if [ -n "$PYBCRYPT" ]; then pip install psycopg2cffi; fi
- if [ -n "$MYSQL" ]; then pip install http://cdn.mysql.com/Downloads/Connector-Python/mysql-connector-python-2.0.4.zip#md5=3df394d89300db95163f17c843ef49df; fi

- if [ -n "$LINT" ]; then pip install black ; fi
# PyLint
# - pylint --disable=all --enable=F,E,unreachable,duplicate-key,unnecessary-semicolon,global-variable-not-assigned,unused-variable,binary-op-exception,bad-format-string,anomalous-backslash-in-string,bad-open-mode,jobs=4 ziggurat_foundations/
- if [ -n "$LINT" ]; then pylint --disable=all --enable=F,unreachable,duplicate-key,unnecessary-semicolon,global-variable-not-assigned,unused-variable,binary-op-exception,bad-format-string,anomalous-backslash-in-string,bad-open-mode,jobs=4 ziggurat_foundations/ ; fi

- if [ -n "$LINT" ]; then black --check --verbose ziggurat_foundations ; fi
- py.test ziggurat_foundations/tests/

# flake8 and rstcheck
Expand Down

0 comments on commit 00bcfca

Please sign in to comment.