From 8b54596c5220f87d9dd56143c13626fea3032e3c Mon Sep 17 00:00:00 2001 From: "Christopher C. Wells" Date: Thu, 2 Jun 2022 20:21:16 -0700 Subject: [PATCH] Add settings to isolated tests --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 18d478da..67a85739 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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'} ); })