Testing Django apps that use South migrations

后端 未结 1 1023
感情败类
感情败类 2021-01-31 09:19

I\'m trying to create some Functional tests for a Django app that uses South migrations.
Eventually, I will also be creating Twill tests.

When I try to run the exist

相关标签:
1条回答
  • 2021-01-31 09:41

    The South setting SOUTH_TESTS_MIGRATE controls this behaviour.

    Add this line to your settings.py file:

    SOUTH_TESTS_MIGRATE = False
    
    0 讨论(0)
提交回复
热议问题