mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
f684d1806e
Hopefully prevents issue with Travis and timeout plugin compatibility
37 lines
1.1 KiB
YAML
37 lines
1.1 KiB
YAML
language: python
|
|
|
|
sudo: false
|
|
dist: trusty
|
|
group: edge
|
|
|
|
python:
|
|
- "2.7"
|
|
- "3.5"
|
|
- "3.6"
|
|
|
|
os:
|
|
- linux
|
|
|
|
env:
|
|
- VIA=compile
|
|
- VIA=flake8
|
|
#- VIA=pypi_nightly
|
|
|
|
install:
|
|
- "./travis.sh"
|
|
- pip install flake8
|
|
|
|
script:
|
|
- "pip install 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
|
|
- if [[ "${VIA}" == "pypi_nightly" ]]; then python -m pytest --tb=native --models --en `python -c "import os.path; import spacy; print(os.path.abspath(os.path.dirname(spacy.__file__)))"`; fi
|
|
- if [[ "${VIA}" == "sdist" ]]; then python -m pytest --tb=native `python -c "import os.path; import spacy; print(os.path.abspath(os.path.dirname(spacy.__file__)))"`; fi
|
|
|
|
notifications:
|
|
slack:
|
|
secure: F8GvqnweSdzImuLL64TpfG0i5rYl89liyr9tmFVsHl4c0DNiDuGhZivUz0M1broS8svE3OPOllLfQbACG/4KxD890qfF9MoHzvRDlp7U+RtwMV/YAkYn8MGWjPIbRbX0HpGdY7O2Rc9Qy4Kk0T8ZgiqXYIqAz2Eva9/9BlSmsJQ=
|
|
email: false
|
|
|
|
cache: pip
|