diff --git a/.cirrus.yml b/.cirrus.yml index 76e4fe21..f66398a7 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -170,7 +170,7 @@ analysis_linux_task: - poetry run mypy src/ > mypy-report.txt || true # mypy exits with 1 if there are errors - uv venv - source .venv/bin/activate - - uv pip install pysonar-scanner + - uv pip install pysonar - . .cirrus/analysis.sh always: pytest_artifacts: diff --git a/.cirrus/analysis.sh b/.cirrus/analysis.sh index de21fe93..f9dcf73e 100644 --- a/.cirrus/analysis.sh +++ b/.cirrus/analysis.sh @@ -2,7 +2,7 @@ function run_analysis { # extra analysis parameters are set in the 'sonar-project.properties' - pysonar-scanner \ + pysonar \ -Dsonar.host.url="$SONAR_HOST_URL" \ -Dsonar.token="$SONAR_TOKEN" \ -Dsonar.analysis.buildNumber=$CI_BUILD_NUMBER \