From 1c1b37d3ed80701df387ad8c04ef7b799832b026 Mon Sep 17 00:00:00 2001 From: noah morrison Date: Tue, 18 Nov 2014 17:11:29 -0500 Subject: [PATCH] Add .travis.yml for http://travis-ci.org --- .travis.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..62da164 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +language: python +python: + - "2.6" + - "2.7" + - "3.2" + - "3.3" + - "3.4" +install: + - pip install pep8 +script: + - pep8 . + - ./test_spec.py -- 2.47.3