Add settings to isolated tests

This commit is contained in:
Christopher C. Wells 2022-06-02 20:21:16 -07:00
parent 72bdc22dc6
commit 8b54596c52
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ function coverage(cb) {
try {
config.testsConfig.isolated.forEach(function (test_name) {
es(
'pipenv run coverage run manage.py test ' + test_name,
'pipenv run coverage run manage.py test --settings=babybuddy.settings.test ' + test_name,
{stdio: 'inherit'}
);
})