Skip to content

Commit

Permalink
Fix running flake on travis
Browse files Browse the repository at this point in the history
  • Loading branch information
sloria committed Dec 2, 2017
1 parent 1113403 commit 340f51c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ before_install:
- tar -xzvf nltk_data-0.11.0.tar.gz -C ~
install:
- pip install numpy
- pip install -r dev-requirements.txt
- pip install -U six
- pip install -U .
- if [[ $TRAVIS_PYTHON_VERSION == '3.4' ]]; then pip install -r docs/requirements.txt;
Expand Down
2 changes: 1 addition & 1 deletion run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

def main():
args = get_argv()
retcode = subprocess.call(['flake8', 'textblob'])
retcode = subprocess.call(['flake8', 'textblob'], shell=True)
if retcode:
sys.exit(1)
success = nose.run(argv=args)
Expand Down

0 comments on commit 340f51c

Please sign in to comment.