File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
plugin/it-python-plugin-test/src/test/java/com/sonar/python/it/plugin
ruling/src/test/java/org/sonar/python/it Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,8 @@ public final class TestsUtils {
50
50
.useDefaultAdminCredentialsForBuilds (true )
51
51
.setSonarVersion (System .getProperty (SQ_VERSION_PROPERTY , DEFAULT_SQ_VERSION ))
52
52
.addPlugin (PLUGIN_LOCATION )
53
+ .setServerProperty ("sonar.telemetry.enable" , "false" ) // Disable telemetry waiting for ORCH-497
54
+
53
55
// Custom rules plugin
54
56
.addPlugin (FileLocation .byWildcardMavenFilename (new File ("../python-custom-rules-plugin/target" ), "python-custom-rules-plugin-*.jar" ))
55
57
.addPlugin (FileLocation .byWildcardMavenFilename (new File ("../../../docs/python-custom-rules-example/target" ), "python-custom-rules-example-*.jar" ))
Original file line number Diff line number Diff line change @@ -45,7 +45,8 @@ static OrchestratorExtension getOrchestrator(Edition sonarEdition) {
45
45
.setSonarVersion (System .getProperty (SQ_VERSION_PROPERTY , DEFAULT_SQ_VERSION ))
46
46
.setEdition (sonarEdition )
47
47
.addPlugin (FileLocation .byWildcardMavenFilename (new File ("../../sonar-python-plugin/target" ), "sonar-python-plugin-*.jar" ))
48
- .addPlugin (MavenLocation .of ("org.sonarsource.sonar-lits-plugin" , "sonar-lits-plugin" , "0.11.0.2659" ));
48
+ .addPlugin (MavenLocation .of ("org.sonarsource.sonar-lits-plugin" , "sonar-lits-plugin" , "0.11.0.2659" ))
49
+ .setServerProperty ("sonar.telemetry.enable" , "false" ); // Disable telemetry waiting for ORCH-497
49
50
50
51
if (sonarEdition != Edition .COMMUNITY ) {
51
52
builder .activateLicense ();
You can’t perform that action at this time.
0 commit comments