From eca68a30a19163b5e5011a3f9a91c386fd8f8e8c Mon Sep 17 00:00:00 2001 From: Rose Robinson Date: Fri, 17 Jul 2015 07:51:19 -0700 Subject: [PATCH 1/2] Create .travis.yml Creating .travis.yml file for Python --- .travis.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..b3f649d4 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: python +python: + - "2.6" + - "2.7" + - "3.2" + - "3.3" + - "3.4" + - "nightly" + +# command to install dependencies +install: "pip install -r requirements.txt" + +# command to run tests +script: nosetests From 4d78f198682e2efb87dc1d8cbc91a1c3bf0c3d7d Mon Sep 17 00:00:00 2001 From: Rose Robinson Date: Fri, 17 Jul 2015 07:53:32 -0700 Subject: [PATCH 2/2] Delete .travis.yml --- .travis.yml | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index b3f649d4..00000000 --- a/.travis.yml +++ /dev/null @@ -1,14 +0,0 @@ -language: python -python: - - "2.6" - - "2.7" - - "3.2" - - "3.3" - - "3.4" - - "nightly" - -# command to install dependencies -install: "pip install -r requirements.txt" - -# command to run tests -script: nosetests