2
0
Fork 0
mirror of https://github.com/ethauvin/bld.git synced 2025-04-25 00:07:12 -07:00

Disable reposilite publish tests on Windows for now

This commit is contained in:
Geert Bevin 2023-10-01 14:18:05 -04:00
parent 844b2b390d
commit 35887e7d06

View file

@ -8,6 +8,8 @@ import org.json.JSONObject;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;
import rife.bld.Project;
import rife.bld.blueprints.BlankProjectBlueprint;
import rife.bld.dependencies.*;
@ -111,6 +113,7 @@ public class TestPublishOperation {
}
@Test
@DisabledOnOs({OS.WINDOWS})
void testPublishRelease()
throws Exception {
var tmp1 = Files.createTempDirectory("test1").toFile();
@ -377,6 +380,7 @@ public class TestPublishOperation {
}
@Test
@DisabledOnOs({OS.WINDOWS})
void testPublishSnapshot()
throws Exception {
var tmp1 = Files.createTempDirectory("test1").toFile();