I want to integrate slotscheck to my django project. But, looks like that this is not possible right now. Because slotscheck imports code and does not run django.setup() before importing models (and some other stuff).
I propose adding pre_exec config value, so one can provide something like:
@sobolevn thanks for posting. Looks like a common use case 👍 , and pre-exec looks like a sensible way to address it. I'll have try around with it to see if it works out.
Hi 👋
I want to integrate
slotscheck
to my django project. But, looks like that this is not possible right now. Becauseslotscheck
imports code and does not rundjango.setup()
before importing models (and some other stuff).I propose adding
pre_exec
config value, so one can provide something like:And
pre-exec
will be called before the actual analysis begin. What do you think?