[Answered ]-How do I remove the "Installed x object(x) from y fixture(s)" report from django test?

1👍

call_command('loaddata', '-v', '0', 'path/to/fixture.json')

This will set the verbosity to 0, meaning that nothing will be reported unless something goes terribly wrong.

Leave a comment