Add some diagnostics to travis.yml to try to figure out why build fails

This commit is contained in:
Matthew Honnibal 2018-05-10 17:10:44 +02:00
parent 887631ca25
commit c261b5b996
1 changed files with 1 additions and 0 deletions

View File

@ -22,6 +22,7 @@ install:
- pip install flake8
script:
- "cat /proc/cpuinfo | grep flags | head -n 1"
- "pip install pytest pytest-timeout"
- if [[ "${VIA}" == "compile" ]]; then python -m pytest --tb=native spacy; fi
- if [[ "${VIA}" == "flake8" ]]; then flake8 . --count --exclude=spacy/compat.py,spacy/lang --select=E901,E999,F821,F822,F823 --show-source --statistics; fi