From 8ead20b6b14b13db4285e041d067d1ed0b2cb815 Mon Sep 17 00:00:00 2001 From: Eddie Hebert Date: Fri, 19 Oct 2012 13:44:42 -0400 Subject: [PATCH] Adds configuration for Travis CI. Using public continuous integration at https://travis-ci.org/ --- .travis.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..76f3242c --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: python +python: + - "2.7" +install: + - pip install -r etc/requirements_dev.txt + - pip install -r etc/requirements.txt +before_script: + - "flake8 zipline tests" +script: + - nosetests \ No newline at end of file