Skip to content

Commit

Permalink
Setup.sh: Update
Browse files Browse the repository at this point in the history
  • Loading branch information
saromanov committed Nov 26, 2015
1 parent bbf5447 commit 6084a95
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ install:
- "pip install -r requirements-dev.txt"
- pip install flake8
- pip install coveralls
- pip install pylint
before_script: ./setup.sh

script:
Expand Down
2 changes: 2 additions & 0 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
VER=`python -c 'import sys; print("".join(map(str, sys.version_info[0:2])))';`
VER27="27"
if [[ $VER != "35" ]]; then
echo "Execution of pylint"
pylint --disable=missing-docstring,invalid-name,fixme ./groups/*.py
fi

if [[ $VER != "36" ]]; then
echo "Execution of flake"
flake8 .
fi

0 comments on commit 6084a95

Please sign in to comment.