Refactor travis, to try to test PyPi compilation as well.

This commit is contained in:
Matthew Honnibal 2016-10-13 12:39:41 +02:00
parent bebf5efe6f
commit dd26035db9
2 changed files with 23 additions and 11 deletions

View File

@ -16,17 +16,9 @@ env:
- VIA="compile"
install:
- "pip install -r requirements.txt"
- "pip install -e ."
- "mkdir -p corpora/en"
- "cd corpora/en"
- "wget --no-check-certificate http://wordnetcode.princeton.edu/3.0/WordNet-3.0.tar.gz"
- "tar -xzf WordNet-3.0.tar.gz"
- "mv WordNet-3.0 wordnet"
- "cd ../../"
- "mkdir models/"
- "python bin/init_model.py en lang_data/ corpora/ models/en"
- "travis.sh"
script:
- "pip install pytest"
- "SPACY_DATA=models/en python -m pytest spacy"
- if [[ "${VIA}" == "compile" ]]; then SPACY_DATA=models/en python -m pytest spacy; fi
- if [[ "${VIA}" == "pip" ]]; then python -m pytest spacy

20
travis.sh Normal file
View File

@ -0,0 +1,20 @@
#!/bin/bash
if [ "${TRAVIS_PULL_REQUEST}" = "false" && "${VIA}" == "pypi"]; then
rm -rf *
pip install spacy
fi
if "${VIA}" == "compile"]; then
pip install -r requirements.txt
pip install -e .
mkdir -p corpora/en
cd corpora/en
wget --no-check-certificate http://wordnetcode.princeton.edu/3.0/WordNet-3.0.tar.gz
tar -xzf WordNet-3.0.tar.gz
mv WordNet-3.0 wordnet
cd ../../
mkdir models/
python bin/init_model.py en lang_data/ corpora/ models/en
fi