From 247e592c2c01395317526e1ec05aff759e050af7 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Thu, 23 Jul 2015 02:32:47 +0200 Subject: [PATCH] * Update travis.yml --- .travis.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index fe8dbdf49..f00d8b68c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,11 +11,12 @@ python: # install dependencies install: - "pip install --upgrade setuptools" - - "rm -rf spacy/" - - "pip install spacy" + - "pip install cython fabric fabtools" + - "pip install -r requirements.txt" + - "fab make" + - "mkdir corpora/en" + - "python bin/init_model.py lang_data/en corpora/en spacy/en/data" # run tests script: - - py.test tests/tokenizer/ - - py.test tests/vocab/ - - py.test tests/tagger/ + - py.test tests/