Merge pull request #19129 from edx/youngstrom/add-unique-value-to-contentstore

Use separate contentstore db's for cms tests
This commit is contained in:
Michael Youngstrom
2018-10-18 14:33:50 -04:00
committed by GitHub

View File

@@ -97,7 +97,7 @@ CONTENTSTORE = {
'ENGINE': 'xmodule.contentstore.mongo.MongoContentStore',
'DOC_STORE_CONFIG': {
'host': MONGO_HOST,
'db': 'test_xcontent',
'db': 'test_xcontent_{}'.format(THIS_UUID),
'port': MONGO_PORT_NUM,
'collection': 'dont_trip',
},