I utilize the standard python logging module. When I call python manage.py test I’d like to disable logging before all the tests are ran. Is there a signal or some other kind of hook I could use to call logging.disable? Or is there some other way to disable logging when python manage.py test is ran?
I utilize the standard python logging module. When I call python manage.py test I’d
Share
The only way I know of is to edit
manage.pyitself… not very elegant, of course, but at least it should get you to where you need to be.