From 3fcd0cd5ead97f1ee5e04f0403baa235f16874d0 Mon Sep 17 00:00:00 2001 From: Donald Stufft Date: Fri, 10 May 2013 23:48:36 -0400 Subject: [PATCH] Add a .travis.yml to test bcrypt via travis --- .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 0000000..35a1157 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: python +python: + - "2.6" + - "2.7" + - "3.2" + - "3.3" + - "PyPy" +install: + - "pip install ." +script: + - py.test +branches: + only: + - master