Starting push

This commit is contained in:
Hsiaoming Yang
2014-11-25 19:59:47 +08:00
parent 75f0a02f27
commit 62801a03b9
2 changed files with 27 additions and 0 deletions

View File

@@ -1,2 +1,11 @@
Captcha
=======
A captcha library that generates audio and image CAPTCHAs.
.. image:: https://travis-ci.org/lepture/captcha.png?branch=master
:target: https://travis-ci.org/lepture/captcha
.. image:: https://ci.appveyor.com/api/projects/status/amm21f13lx4wuura
:target: https://ci.appveyor.com/project/lepture/captcha
.. image:: https://coveralls.io/repos/lepture/captcha/badge.png?branch=master
:target: https://coveralls.io/r/lepture/captcha

18
appveyor.yml Normal file
View File

@@ -0,0 +1,18 @@
build: false
environment:
matrix:
- PYTHON: "C:/Python27"
- PYTHON: "C:/Python33"
- PYTHON: "C:/Python34"
init:
- "ECHO %PYTHON%"
install:
- ps: (new-object net.webclient).DownloadFile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', 'C:/get-pip.py')
- "%PYTHON%/python.exe C:/get-pip.py"
- "%PYTHON%/Scripts/pip.exe install nose"
test_script:
- "%PYTHON%/Scripts/nosetests.exe -s"