Re: Unit Test logging with couchDB....

2014-03-20 Thread Alexander Shorin
Well, CouchDB's deprecated in-browser test suite has a feature to share test reports: https://github.com/apache/couchdb/commit/9765e4fc3e89400262330d907fb5429ada370428 Actually, these reports are stored inside special database and the button allows you to replicate this db to central one. In moder

Re: using python-cloudant to connect to couchDB

2014-03-20 Thread Mike Marino
Hi Andy, > well - obviously I am wrong. I am sorry. Thanks for your example Mike. I > think Radhikas question is very well answered then :) No problem, I probably should've sent the gist link with my first response to avoid confusion. :-) > But I am still wondering if the intention of this libr

RE: using python-cloudant to connect to couchDB

2014-03-20 Thread Ramanadham, Radhika
No problem. Thanks for responding. Yes, my intention is to only use it for local couchDB and create db, documents and perform CRUD ops. -Original Message- From: Andy Wenk [mailto:a...@nms.de] Sent: Thursday, March 20, 2014 5:07 PM To: user@couchdb.apache.org Subject: Re: using python-clo

RE: using python-cloudant to connect to couchDB

2014-03-20 Thread Ramanadham, Radhika
Thank you very much for the example. My intention is to use it only for my local couchdb. -Original Message- From: Mike Marino [mailto:mmar...@gmail.com] Sent: Thursday, March 20, 2014 3:30 PM To: user@couchdb.apache.org Subject: Re: using python-cloudant to connect to couchDB Here is a

Re: using python-cloudant to connect to couchDB

2014-03-20 Thread Andy Wenk
Mike, Radhika, well - obviously I am wrong. I am sorry. Thanks for your example Mike. I think Radhikas question is very well answered then :) But I am still wondering if the intention of this library is to use it for Apache CouchDB's and not only Cloudant. But on the other side if it works it wor

Re: using python-cloudant to connect to couchDB

2014-03-20 Thread Mike Marino
Here is a gist demonstrating using the cloudant module connecting to a local couchdb: https://gist.github.com/mgmarino/9526872 Cheers, Mike > Am 20.03.2014 um 20:26 schrieb Andy Wenk : > > Radhika, > > On 20 March 2014 19:08, Ramanadham, Radhika wrote: > >> But, I see they say its an interface f

Re: using python-cloudant to connect to couchDB

2014-03-20 Thread Mike Marino
> Am 20.03.2014 um 20:26 schrieb Andy Wenk : > > The statement says that this is interface for Cloudant who are using > CouchDB. So you can query CouchDB databases hosted at Cloudant. You can't > use this interface for a local CouchDB database. > This is completely incorrect. We use this module to

Re: using python-cloudant to connect to couchDB

2014-03-20 Thread Andy Wenk
Radhika, On 20 March 2014 19:08, Ramanadham, Radhika wrote: > But, I see they say its an interface for cloudant or couchDB > > > > https://pypi.python.org/pypi/cloudant/0.5.6 The statement says that this is interface for Cloudant who are using CouchDB. So you can query CouchDB databases hosted

RE: Unit Test logging with couchDB....

2014-03-20 Thread Knudsen, Ken
Yup...So, in whatever unit test framework one is running, the unit tests are running, Assert.Fails and whatever else... but within those tests, say you want to write out information about values and other results... or want to store the end result files themselves in a global store for later ret

Re: using python-cloudant to connect to couchDB

2014-03-20 Thread Mike Marino
> But, I see they say its an interface for cloudant or couchDB Absolutely, see my last email about passing the uri to Account. > > > https://pypi.python.org/pypi/cloudant/0.5.6 > > > > > > -Original Message- > From: Mike Marino [mailto:mmar...@gmail.com] > Sent: Thursday, March 20, 2014 1

RE: using python-cloudant to connect to couchDB

2014-03-20 Thread Ramanadham, Radhika
But, I see they say its an interface for cloudant or couchDB https://pypi.python.org/pypi/cloudant/0.5.6 -Original Message- From: Mike Marino [mailto:mmar...@gmail.com] Sent: Thursday, March 20, 2014 12:58 PM To: user@couchdb.apache.org Subject: Re: using python-cloudant to connect

Re: Unit Test logging with couchDB....

2014-03-20 Thread Alexander Shorin
Hi, Do you mean under "unit test logging with CouchDB" actually storing unittest results as CouchDB documents? -- ,,,^..^,,, On Thu, Mar 20, 2014 at 6:08 PM, Knudsen, Ken wrote: > Hi Everyone, > >Obviously there's a thousand plus ways of doing this...Has anyone > implemented or worked with

Re: using python-cloudant to connect to couchDB

2014-03-20 Thread Mike Marino
> Am 20.03.2014 um 17:41 schrieb Robert Samuel Newson : > > The library exists to connect you to cloudant, which is a remote service. :) While this is true, it also works plenty well to connect to any couchdb instance. We've switched to using it and I've found the interface somewhat better (cleane

Re: using python-cloudant to connect to couchDB

2014-03-20 Thread Mike Marino
Hi radhika, > Am 20.03.2014 um 17:33 schrieb "Ramanadham, Radhika" > : > > Hi guys, > I have a dumb question. > > Now with cloudant, how do I connect to my couchDB server > (http://localhost:5984) with no username and password? > > All the examples I see connect to cloudant and not couchDB. Ho

Re: using python-cloudant to connect to couchDB

2014-03-20 Thread Robert Samuel Newson
The library exists to connect you to cloudant, which is a remote service. :) B. On 20 Mar 2014, at 16:31, Ramanadham, Radhika wrote: > Hi guys, > I have a dumb question. > > Now with cloudant, how do I connect to my couchDB server > (http://localhost:5984) with no username and password? >

using python-cloudant to connect to couchDB

2014-03-20 Thread Ramanadham, Radhika
Hi guys, I have a dumb question. Now with cloudant, how do I connect to my couchDB server (http://localhost:5984) with no username and password? All the examples I see connect to cloudant and not couchDB. How do I connect to http://127.0.0.1:5984/ import cloudant # connect to your account #

Unit Test logging with couchDB....

2014-03-20 Thread Knudsen, Ken
Hi Everyone, Obviously there's a thousand plus ways of doing this...Has anyone implemented or worked with unit testing frameworks but instead of using that frameworks built in logging mechanism, broke out that logging part and used couchDB instead? With couchDB there wouldn't be much 'breaki