Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions conf/release.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ COPY ./LICENSE .
COPY ./sonar/audit sonar/audit

RUN pip install --upgrade pip \
&& pip install sonar-tools==3.16.2
&& pip install sonar-tools==3.17

USER ${USERNAME}
WORKDIR /home/${USERNAME}

HEALTHCHECK --interval=180s --timeout=5s CMD [ "sonar-tools" ]
HEALTHCHECK --interval=180s --timeout=5s CMD [ "sonar-tools-help" ]

CMD [ "sonar-tools" ]
CMD [ "sonar-tools-help" ]
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "sonar-tools"
version = "3.16.2"
version = "3.17"
description = "A collection of utility tools for the SonarQube ecosystem"
authors = [
{name = "Olivier Korach", email = "[email protected]"},
Expand Down Expand Up @@ -31,7 +31,7 @@ classifiers = [
"Development Status :: 5 - Production/Stable",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Topic :: Code Quality :: Utility Tools",
"Topic :: Software Development :: Quality Assurance",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
Expand Down
2 changes: 1 addition & 1 deletion sonar/util/project_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#

""" Project utility functions """
"""Project utility functions"""

import math
from sonar import logging as log
Expand Down