From 60714799c8e9c030bcaf0b6b8b091edef3e75b02 Mon Sep 17 00:00:00 2001 From: Dan Smith Date: Tue, 17 Nov 2015 15:30:01 -0800 Subject: [PATCH] Add travis CI yaml --- .travis.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..13d5969 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +language: python +python: + - "2.7" + - "3.2" + - "3.3" + - "3.4" + - "3.5" + - "3.5-dev" # 3.5 development branch + - "nightly" # currently points to 3.6-dev +# command to install dependencies +install: "pip install nose mock" +# command to run tests +script: nosetests