From 64925b93cfab240ae8c53865840fc1f867d61871 Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Sat, 8 Feb 2014 09:37:39 -0600 Subject: [PATCH] Add travis configuration --- .travis.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..8781f38 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,24 @@ +language: python + +python: + - 2.4 + - 2.5 + - 2.6 + - 2.7 + - 3.0 + - 3.1 + - 3.2 + - 3.3 + - pypy + +install: + - pip install . + - pip install --use-mirrors nose coverage pep8 pyflakes + +script: + - pep8 --show-source speedtest_cli.py + - pyflakes speedtest_cli.py + +notifications: + email: + - matt@sivel.net