Skip to content

Commit 8c2d9c4

Browse files
committed
Move scanner properties file back in repo root
1 parent 7864f76 commit 8c2d9c4

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

conf/scan.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,17 +55,16 @@ externalIssuesReport="$buildDir/external-issue-report.json"
5555
rm -rf -- ${buildDir:?"."}/* .coverage */__pycache__ */*.pyc # mediatools/__pycache__ testpytest/__pycache__ testunittest/__pycache__
5656

5757
if [ "$dotest" == "true" ]; then
58-
./run_tests.sh
58+
$CONFDIR/run_tests.sh
5959
fi
6060

6161
if [ "$dolint" != "false" ]; then
62-
./run_linters.sh
62+
$CONFDIR/run_linters.sh
6363
fi
6464

6565
version=$(grep PACKAGE_VERSION $ROOTDIR/sonar/version.py | cut -d "=" -f 2 | sed -e "s/[\'\" ]//g" -e "s/^ +//" -e "s/ +$//")
6666

6767
cmd="sonar-scanner -Dsonar.projectVersion=$version \
68-
-Dproject.settings=$CONFDIR/sonar-project.properties \
6968
-Dsonar.python.flake8.reportPaths=$flake8Report \
7069
-Dsonar.python.pylint.reportPaths=$pylintReport \
7170
-Dsonar.python.bandit.reportPaths=$banditReport \
File renamed without changes.

0 commit comments

Comments
 (0)