We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1113403 commit 340f51cCopy full SHA for 340f51c
.travis.yml
@@ -10,6 +10,7 @@ before_install:
10
- tar -xzvf nltk_data-0.11.0.tar.gz -C ~
11
install:
12
- pip install numpy
13
+ - pip install -r dev-requirements.txt
14
- pip install -U six
15
- pip install -U .
16
- if [[ $TRAVIS_PYTHON_VERSION == '3.4' ]]; then pip install -r docs/requirements.txt;
run_tests.py
@@ -25,7 +25,7 @@
25
26
def main():
27
args = get_argv()
28
- retcode = subprocess.call(['flake8', 'textblob'])
+ retcode = subprocess.call(['flake8', 'textblob'], shell=True)
29
if retcode:
30
sys.exit(1)
31
success = nose.run(argv=args)
0 commit comments