On Thu, Dec 19, 2013 at 1:47 AM, Javier Guerra Giraldez
wrote:
> On Wed, Dec 18, 2013 at 12:18 PM,
> wrote:
> >
> > Wouldn't an easy (i.e. straightforward) solution be to add an Django
> "ODM"
> > that mirrors the ORM wherever it makes sense? This sounds pretty close
> to
> > your second soluti
On Thu, Dec 19, 2013 at 1:18 AM, wrote:
>
>
> On Tuesday, December 17, 2013 8:12:43 PM UTC-6, Russell Keith-Magee wrote:
>>
>>
>> My claim is that complete abstraction of the data store shouldn't be the
>> goal. What we should be aiming for is sufficient API compatibility to allow
>> for two thing
On Wed, Dec 18, 2013 at 11:57 PM, Harry Percival
wrote:
> Django's test runner overrides your settings to force DEBUG to be True,
> which I understand the intention behind, but it is occasionally annoying.
> One solution for those cases is to use `override_settings`, but that has
> very weird effe
On Wed, Dec 18, 2013 at 12:18 PM, wrote:
>
> Wouldn't an easy (i.e. straightforward) solution be to add an Django "ODM"
> that mirrors the ORM wherever it makes sense? This sounds pretty close to
> your second solution, except choosing SQL vs NoSQL means users make a more
> explicit choice wheth
On Tuesday, December 17, 2013 8:12:43 PM UTC-6, Russell Keith-Magee wrote:
>
>
> My claim is that complete abstraction of the data store shouldn't be the
> goal. What we should be aiming for is sufficient API compatibility to allow
> for two things:
>
> * ModelForms wrapping a model from a NoS
Hi all, can't believe I missed this entire thread because googlegroups
didn't auto-subscribe me to replies. thanks for the tips.
For the curious, I'm using Mozilla Persona. Detailed info here:
http://chimera.labs.oreilly.com/books/123400754/ch14.html
On Monday, 21 October 2013 15:22:07 UT
Django's test runner overrides your settings to force DEBUG to be True,
which I understand the intention behind, but it is occasionally annoying.
One solution for those cases is to use `override_settings`, but that has
very weird effects when using `LiveServerTestCase`.
Minimal repro:
dja