From 47c71ce1c08d891868787a0d80760a17c248c0b3 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sat, 3 Jan 2015 01:58:31 +1100 Subject: [PATCH] * Add travis.yml --- .travis.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..7e79fa78b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: python +python: + - "2.7" + - "3.4" +# command to install dependencies +install: + pip install cython && + pip install cymem && + pip install murmurhash && + pip install preshed && + pip install thinc && + pip install -r requirements.txt && + python setup.py build_ext --inplace +# command to run tests +script: "py.test tests/"