belugame
belugame
I'm encountering this issue too on two different *buntu-based machines. I m using it running unit tests with tox 2.7 inside a virtual env. Permissions should not be a problem:...
@asmeurer Thank you, configparser shadowed an IOError indeed that is in my project setup. `IOError: [Errno 2] No such file or directory: '/home/myuser/.config/flake8`
Thank you for the detailed bug report. I assume Django 3.1 passes a new built-in kwarg which CurrentUser should expect but does not. Though we will need to look into...
Has behave-django seen changes in regards to this issue since? I would especially be interested what would be the best approach to @patch a method for the time of a...
for disallowing too fast/many refreshes we could plugin throttling: https://www.django-rest-framework.org/api-guide/throttling/#scopedratethrottle and make it configurable via knox settings so the user does not need to override the view for it
@sphrak yes, i like that idea. To make use of the parent-library as much as possible. KISS. Maybe we should delay the 4.0 release and give us more time to...
> @belugame > You dont happen to know if I can reload the urls.py via reload_module() in testing? I cannot get it to work. > > I am trying to...
I also find returning a new token better than extending the old one. That avoids clients having an token infinitely. The longer a client uses the same password, the higher...
@johnraz The question for me now is when you think about re-using the login logic... why do we even bother :) the client already has a login logic... and he...
https://docs.travis-ci.com/user/build-stages/matrix-expansion/ this looks exactly like what we want. it tests a matrix but only deploys one item of it.