Skip to content

Commit

Permalink
travis: try to skip flake8 on py 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed Nov 3, 2016
1 parent 0b448b3 commit 8f2d846
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/travis/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
fi

if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]] || [[ $PYVER == 'py26' ]]; then
pip install -U unittest2 ordereddict
pip install -U unittest2
fi

pip install -U pyopenssl pysendfile flake8 mock coveralls
3 changes: 3 additions & 0 deletions .ci/travis/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,7 @@ fi
pip install flake8 pyopenssl mock
python setup.py install
python pyftpdlib/test/runner.py
if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]] || [[ $PYVER == 'py26' ]]; then
exit 0;
fi
flake8

0 comments on commit 8f2d846

Please sign in to comment.