From f2ef804aa738ea9831b2d6bb7860e81c4f1bb195 Mon Sep 17 00:00:00 2001 From: Frank Hamand Date: Thu, 2 Mar 2017 12:00:26 +0000 Subject: [PATCH] Pass arguments through to bin/test_with_coverage --- bin/test_with_coverage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/test_with_coverage b/bin/test_with_coverage index a8b9c08..54bcc9c 100644 --- a/bin/test_with_coverage +++ b/bin/test_with_coverage @@ -4,7 +4,7 @@ set -x output_dir='test-results' mkdir -p $output_dir -coverage run --source="./cabot/" manage.py test +coverage run --source="./cabot/" manage.py test $@ status=$? coverage report --omit="cabot/cabotapp/tests*"