From cb2f4013f63b2f107e234ea13d1551b169a883d0 Mon Sep 17 00:00:00 2001 From: Anthony Hillairet Date: Wed, 7 Dec 2022 15:04:05 -0800 Subject: [PATCH] Fix typo in bash variable assignment (#365) --- 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