Skip to content

Commit 3b86ff5

Browse files
pynicolasalban-auzeill
authored andcommitted
SONARPY-226 Depend on latest Orchestrator
1 parent 77ec919 commit 3b86ff5

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

its/plugin/src/test/java/com/sonar/python/it/plugin/PylintReportTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@ public void missing_report() throws Exception {
5555
@Test
5656
public void invalid_report() throws Exception {
5757
BuildResult result = analyseProjectWithReport("invalid.txt");
58-
assertThat(result.getLogs()).contains("DEBUG - Cannot parse the line: trash");
58+
assertThat(result.getLogs()).contains("Cannot parse the line: trash");
5959
assertThat(issues()).hasSize(0);
6060
}
6161

6262
@Test
6363
public void unknown_rule() throws Exception {
6464
BuildResult result = analyseProjectWithReport("rule-unknown.txt");
65-
assertThat(result.getLogs()).contains("WARN - Pylint rule 'C9999' is unknown");
65+
assertThat(result.getLogs()).contains("Pylint rule 'C9999' is unknown");
6666
assertThat(issues()).hasSize(0);
6767
}
6868

its/ruling/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@
3434
<groupId>org.assertj</groupId>
3535
<artifactId>assertj-core</artifactId>
3636
</dependency>
37+
<dependency>
38+
<groupId>com.google.guava</groupId>
39+
<artifactId>guava</artifactId>
40+
<scope>test</scope>
41+
</dependency>
3742
</dependencies>
3843

3944
</project>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
<mockito.version>1.10.19</mockito.version>
8989
<slf4j.version>1.7.21</slf4j.version>
9090
<sonar.version>6.2</sonar.version>
91-
<sonar.orchestrator.version>3.14.0.887</sonar.orchestrator.version>
91+
<sonar.orchestrator.version>3.15.2.1322</sonar.orchestrator.version>
9292
<sonarlint-core.version>2.4.1</sonarlint-core.version>
9393
<sslr.version>1.22</sslr.version>
9494
<sslr.xpath.version>1.22</sslr.xpath.version>

0 commit comments

Comments
 (0)