Changes between Version 1 and Version 2 of Ticket #36496, comment 9


Ignore:
Timestamp:
Jul 9, 2025, 1:54:31 PM (2 months ago)
Author:
Abhishek Srivastava

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36496, comment 9

    v1 v2  
    2121
    2222I added `['TEST']['NAME']` to keep test DB files in separate folders.
    23 I ran:
     23I ran tests with:
    2424
    2525{{{
     
    2727}}}
    2828
    29 The .sqlite3 test DB files were created in a different folder than the project root
     29**Observations:**
    3030
    31 I got this error:
    32 
     31- Django tries to create test DB copies with suffixes (_1, _2, etc.) for each worker process
     32- The base .sqlite3 test files were created in a different folder than the project root, as configured.
     33- But when running in parallel, Django does not handle the folder part when adding suffixes . It gives following error
    3334{{{
    3435sqlite3.OperationalError: unable to open database file
Back to Top