Add a .travis.yml to test bcrypt via travis

This commit is contained in:
Donald Stufft 2013-05-10 23:48:36 -04:00
parent a6f9d17a59
commit 3fcd0cd5ea

14
.travis.yml Normal file
View File

@ -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