]> source.dussan.org Git - sonarqube.git/commit
SONAR-9352 do not let quality gate fail for very small changesets
authorDaniel Schwarz <daniel.schwarz@sonarsource.com>
Mon, 25 Sep 2017 10:51:30 +0000 (12:51 +0200)
committerDaniel Schwarz <bartfastiel@users.noreply.github.com>
Sat, 7 Oct 2017 07:06:25 +0000 (09:06 +0200)
commit6dbe83f15f431bc1f5a609040767ef7e0a4ba79c
tree209fab8f56cb5fb7e35e45556a1072ed17f72c68
parent9aa90e6e51ac2dc5feea05f09d8d26acc036c871
SONAR-9352 do not let quality gate fail for very small changesets
21 files changed:
server/sonar-server/src/main/java/org/sonar/server/computation/task/projectanalysis/container/ProjectAnalysisTaskContainerPopulator.java
server/sonar-server/src/main/java/org/sonar/server/computation/task/projectanalysis/step/QualityGateMeasuresStep.java
server/sonar-server/src/main/java/org/sonar/server/computation/task/projectanalysis/step/SmallChangesetQualityGateSpecialCase.java [new file with mode: 0644]
server/sonar-server/src/test/java/org/sonar/server/computation/task/projectanalysis/step/QualityGateMeasuresStepTest.java
server/sonar-server/src/test/java/org/sonar/server/computation/task/projectanalysis/step/SmallChangesetQualityGateSpecialCaseTest.java [new file with mode: 0644]
tests/projects/qualitygate/small-changesets/v1-1000-lines/sonar-project.properties [new file with mode: 0644]
tests/projects/qualitygate/small-changesets/v1-1000-lines/src/sample/Sample.xoo [new file with mode: 0644]
tests/projects/qualitygate/small-changesets/v1-1000-lines/src/sample/Sample.xoo.coverage [new file with mode: 0644]
tests/projects/qualitygate/small-changesets/v1-1000-lines/src/sample/Sample.xoo.measures [new file with mode: 0644]
tests/projects/qualitygate/small-changesets/v1-1000-lines/src/sample/Sample.xoo.scm [new file with mode: 0644]
tests/projects/qualitygate/small-changesets/v2-1019-lines/sonar-project.properties [new file with mode: 0644]
tests/projects/qualitygate/small-changesets/v2-1019-lines/src/sample/Sample.xoo [new file with mode: 0644]
tests/projects/qualitygate/small-changesets/v2-1019-lines/src/sample/Sample.xoo.coverage [new file with mode: 0644]
tests/projects/qualitygate/small-changesets/v2-1019-lines/src/sample/Sample.xoo.measures [new file with mode: 0644]
tests/projects/qualitygate/small-changesets/v2-1019-lines/src/sample/Sample.xoo.scm [new file with mode: 0644]
tests/projects/qualitygate/small-changesets/v2-1020-lines/sonar-project.properties [new file with mode: 0644]
tests/projects/qualitygate/small-changesets/v2-1020-lines/src/sample/Sample.xoo [new file with mode: 0644]
tests/projects/qualitygate/small-changesets/v2-1020-lines/src/sample/Sample.xoo.coverage [new file with mode: 0644]
tests/projects/qualitygate/small-changesets/v2-1020-lines/src/sample/Sample.xoo.measures [new file with mode: 0644]
tests/projects/qualitygate/small-changesets/v2-1020-lines/src/sample/Sample.xoo.scm [new file with mode: 0644]
tests/src/test/java/org/sonarqube/tests/qualityGate/QualityGateForSmallChangesetsTest.java [new file with mode: 0644]