spaCy/.travis.yml

33 lines
901 B
YAML
Raw Normal View History

2015-01-02 17:58:31 +03:00
language: python
2016-10-13 21:54:46 +03:00
sudo: false
2016-09-23 15:17:46 +03:00
dist: trusty
2015-12-13 21:54:16 +03:00
group: edge
2015-12-13 21:46:19 +03:00
2015-12-13 21:34:51 +03:00
python:
- "2.7"
2017-03-16 21:40:59 +03:00
- "3.6"
2015-12-13 21:34:51 +03:00
os:
- linux
2016-10-13 13:23:45 +03:00
env:
- VIA=compile LC_ALL=en_US.ascii
- VIA=compile
# - VIA=sdist
2015-01-02 17:58:31 +03:00
install:
2016-10-13 14:09:30 +03:00
- "./travis.sh"
2015-12-15 12:50:10 +03:00
2015-12-18 19:47:06 +03:00
script:
2017-04-07 18:06:18 +03:00
- "pip install pytest pytest-timeout"
- if [[ "${VIA}" == "compile" ]]; then python -m pytest --tb=native spacy; fi
- if [[ "${VIA}" == "pypi" ]]; then python -m pytest --tb=native `python -c "import os.path; import spacy; print(os.path.abspath(ospath.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
2016-10-16 02:51:24 +03:00
notifications:
slack:
secure: F8GvqnweSdzImuLL64TpfG0i5rYl89liyr9tmFVsHl4c0DNiDuGhZivUz0M1broS8svE3OPOllLfQbACG/4KxD890qfF9MoHzvRDlp7U+RtwMV/YAkYn8MGWjPIbRbX0HpGdY7O2Rc9Qy4Kk0T8ZgiqXYIqAz2Eva9/9BlSmsJQ=
email: false