Skip to content

Commit

Permalink
ITs wip
Browse files Browse the repository at this point in the history
  • Loading branch information
kirill-knize-sonarsource committed Oct 7, 2024
1 parent 8aeb27c commit 4797cde
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
import static org.assertj.core.api.Assertions.assertThat;
import static org.awaitility.Awaitility.await;
import static org.sonarsource.sonarlint.core.rpc.protocol.common.Language.JAVA;
import static org.sonarsource.sonarlint.core.rpc.protocol.common.Language.PYTHON;
import static org.sonarsource.sonarlint.core.rpc.protocol.common.RuleType.CODE_SMELL;

class SonarQubeCommunityEditionTests extends AbstractConnectedTests {
Expand Down Expand Up @@ -117,7 +118,7 @@ static void startBackend() throws IOException {
backend = clientLauncher.getServerProxy();
try {
var featureFlags = new FeatureFlagsDto(true, true, true, false, true, true, false, true, false, true);
var enabledLanguages = Set.of(JAVA);
var enabledLanguages = Set.of(JAVA, PYTHON);
backend.initialize(
new InitializeParams(IT_CLIENT_INFO,
IT_TELEMETRY_ATTRIBUTES, HttpConfigurationDto.defaultConfig(), null, featureFlags, sonarUserHome.resolve("storage"),
Expand Down

0 comments on commit 4797cde

Please sign in to comment.