ソースを参照

Update travis utils version for appveyor (#75)

tags/4.2.0.1873
Jacek 4年前
コミット
70da1689e8
コミッターのメールアドレスに関連付けられたアカウントが存在しません
2個のファイルの変更7行の追加2行の削除
  1. 1
    1
      appveyor.ps1
  2. 6
    1
      src/test/java/org/sonarsource/scanner/cli/ConfTest.java

+ 1
- 1
appveyor.ps1 ファイルの表示

@@ -32,7 +32,7 @@ function FetchAndUnzip

function InstallAppveyorTools
{
$travisUtilsVersion = "33"
$travisUtilsVersion = "57"
$localPath = "$env:USERPROFILE\.local"
$travisUtilsPath = "$localPath\travis-utils-$travisUtilsVersion"
if (Test-Path $travisUtilsPath)

+ 6
- 1
src/test/java/org/sonarsource/scanner/cli/ConfTest.java ファイルの表示

@@ -33,6 +33,7 @@ import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.junit.rules.TemporaryFolder;
import org.sonarsource.scanner.api.internal.shaded.minimaljson.Json;

import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.Assume.assumeTrue;
@@ -326,7 +327,11 @@ public class ConfTest {
Properties properties = conf.properties();
assertThat(properties.get("sonar.prop")).isEqualTo("default");

env.put("SONARQUBE_SCANNER_PARAMS", "{\"project.settings\" : \"" + home.resolve("conf/sq-project.properties").toAbsolutePath().toString() + "\"}");
String jsonString = Json.object()
.add("project.settings", home.resolve("conf/sq-project.properties").toAbsolutePath().toString())
.toString();

env.put("SONARQUBE_SCANNER_PARAMS", jsonString);

properties = conf.properties();
assertThat(properties.get("sonar.prop")).isEqualTo("expected");

読み込み中…
キャンセル
保存