Disable init_model.py test, which will be replaced with new model creation logic.

This commit is contained in:
Matthew Honnibal 2016-12-18 17:52:56 +01:00
parent 614ca6fb41
commit 5e970307f5

View File

@ -7,7 +7,7 @@ if [ "${VIA}" == "pypi" ]; then
python -m spacy.de.download
fi
if [ "${VIA}" == "sdist" ]; then
if [ "${VIA}" == "sdist" && "$TRAVIS_PULL_REQUEST" == "false" ]; then
rm -rf *
pip uninstall spacy
wget https://api.explosion.ai/build/spacy/sdist/$TRAVIS_COMMIT
@ -16,15 +16,15 @@ if [ "${VIA}" == "sdist" ]; then
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
#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