Speed up Django tests (PostgreSQL database)
Changing following options in PostgreSQL configuration (postgres.conf
) will, to a small degree, speed up tests:
fsync = off synchronous_commit = off full_page_writes = off
Do not use that configuration on production server!
Ref: …