Scot Hacker
Scot Hacker
Ah! I think I've found and fixed the reason for the non-match issue I was referring to above. We have some code that uses python `futures` to do multi-threaded operations....
I think the attempt it's making to re-record is a symptom, not a cause. So yes I could set record-mode to None in the test runner, but that wouldn't solve...
I'm new to this tool as well, but this line in your Issue confused me: > I saw that I was not getting access to the real API calls that...
We have a very db-intensive test suite (needs to be for this app). We use Postgres, pytest, pytest-django, and pytest-xdist on MacOS. Previously, we could run our test suite with...
In my case, I have a call to `super().save(*args, **kwargs)` within the `User.save()` method. It is intentional, not a mistake, and I really do need it to establish M2M relations....
Maybe I'm not following how this works - are you saying that this python is converted to ajax? Our logout system is not doing any ajax. Not sure we need...
Ah, I wasn't clear whether you were suggesting that our SSO logout app was ajax-based or whether you meant the ajax aspects of DSS. I'm aware that DSS is doing...
Django's auth.logout() does not swallow exceptions, nor does django_cas_ng's, and we've never had a problem with logout crashing. There are no 500s in runserver console or in browser console indicating...
OK, I've just had a very long session trying to debug this. Starting with pdb in middleware.py, then injecting pdb - and print statements - directly into Django's logout function,...
FWIW here's the tail end of a pdb session, just before and after where it claims to be doing the redirect: ``` > /path/to/python3.5/http/cookies.py(430)OutputString() -> for key, value in items:...