From f1d0a49fb3999bf39faf6552c47f7b4fe8dcb5f9 Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Mon, 8 Apr 2013 16:39:37 +0100 Subject: [PATCH] add travis configuration --- .travis.yml | 11 +++++++++++ requirements.txt | 7 +++++++ 2 files changed, 18 insertions(+) create mode 100644 .travis.yml create mode 100644 requirements.txt diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..0090a78 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +language: python +python: + - 2.6 + - 2.7 + - 3.3 +matrix: + allow_failures: + - python: 3.3 +install: + - pip install -r requirements.txt --use-mirrors +script: python setup.py test diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..5393f02 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,7 @@ +#Install +anyjson +websocket-client +#Test +nose +nose-cov +gevent-socketio