Javier Buzzi

Results 152 comments of Javier Buzzi

I wrote this out here: https://github.com/Bachmann1234/diff_cover/issues/479 You can change the python version (hard coded to `python:3.12`) to anything you want and run either `./verify.sh` as @Bachmann1234 mentioned, or `pytest -n...

@AGASS007 LOL, don't do that in the tenant migrations. Your two options on avoiding that are: 1. create a management command to create new tenant members: (our choice) ``` ./manage.py...

@AGASS007 thinking about your problem a little more, wouldn't this get solved by using transactions? if you wrap your create new tenant function, no one will see it until it...

@AGASS007 Ive create the PR, any criticism would be appreciated. https://github.com/bernardopires/django-tenant-schemas/pull/552

@xgilest i dont know how i feel about delegating this task to celery. On the one hand, sure its a job queue... let it do it in the background... But...

Your traceback shows Django’s flush getting cancelled by Postgres’ statement_timeout, which almost always means something in your own test process is still holding a lock or running a long query...

_This was a run through time, it looks like its been like `rf` since the [initial commit](https://github.com/pytest-dev/pytest-django/commit/b9f513f9327c412f148b023885895df953ce9262#diff-120a0c7749b191d7a49ee491cb042bf5952a09689a31802bebc88fba3ca94c98R140). Funny that._ You're not wrong. Remember you can add this to your code:...

@rpradal What is the use case here? What pain point are you experiencing that motivated this change?