Procházet zdrojové kódy

Update travis utils version for appveyor (#75)

tags/4.2.0.1873
Jacek před 4 roky
rodič
revize
70da1689e8
Žádný účet není propojen s e-mailovou adresou tvůrce revize

+ 1
- 1
appveyor.ps1 Zobrazit soubor

@@ -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 Zobrazit soubor

@@ -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");

Načítá se…
Zrušit
Uložit