Skip to content

Commit

Permalink
Disable reposilite publish tests on Windows for now
Browse files Browse the repository at this point in the history
  • Loading branch information
gbevin committed Oct 1, 2023
1 parent 844b2b3 commit 35887e7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/test/java/rife/bld/operations/TestPublishOperation.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
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.*;
Expand Down Expand Up @@ -111,6 +113,7 @@ void testPopulation() {
}

@Test
@DisabledOnOs({OS.WINDOWS})
void testPublishRelease()
throws Exception {
var tmp1 = Files.createTempDirectory("test1").toFile();
Expand Down Expand Up @@ -377,6 +380,7 @@ protected Project createProjectBlueprint() {
}

@Test
@DisabledOnOs({OS.WINDOWS})
void testPublishSnapshot()
throws Exception {
var tmp1 = Files.createTempDirectory("test1").toFile();
Expand Down

0 comments on commit 35887e7

Please sign in to comment.