From 56ba705c14bf4cafa3af257e55f65b1d6cae0044 Mon Sep 17 00:00:00 2001 From: Ant Date: Wed, 7 Dec 2022 14:29:44 -0800 Subject: [PATCH] Fix typo in bash variable assignment --- test_suite.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_suite.sh b/test_suite.sh index 54ab411..ea5b297 100755 --- a/test_suite.sh +++ b/test_suite.sh @@ -35,7 +35,7 @@ then MYPY_REPORTS="--junit-xml ${REPORTS_FOLDER}typing.xml" if [ -f ./coverage.conf ]; then - $covconf="--cov-config ./coverage.conf" + covconf="--cov-config ./coverage.conf" fi PYTEST_REPORTS="--junitxml ${REPORTS_FOLDER}unittesting.xml $covconf --cov-report xml:${REPORTS_FOLDER}coverage.xml" fi