From 62801a03b92a91db9e3600dcc6734d1cec557d89 Mon Sep 17 00:00:00 2001 From: Hsiaoming Yang Date: Tue, 25 Nov 2014 19:59:47 +0800 Subject: [PATCH] Starting push --- README.rst | 9 +++++++++ appveyor.yml | 18 ++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 appveyor.yml diff --git a/README.rst b/README.rst index 40d23b9..20f15cf 100644 --- a/README.rst +++ b/README.rst @@ -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 diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..b42382a --- /dev/null +++ b/appveyor.yml @@ -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"