Skip to content

Commit 64770ff

Browse files
committed
Disable windows test
1 parent d9b19f3 commit 64770ff

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

ethereum/statetransition/src/test/java/tech/pegasys/teku/statetransition/util/DebugDataDumperTest.java

+3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
import java.nio.file.Path;
2525
import org.apache.tuweni.bytes.Bytes;
2626
import org.junit.jupiter.api.Test;
27+
import org.junit.jupiter.api.condition.DisabledOnOs;
28+
import org.junit.jupiter.api.condition.OS;
2729
import org.junit.jupiter.api.io.TempDir;
2830
import tech.pegasys.teku.infrastructure.time.StubTimeProvider;
2931
import tech.pegasys.teku.spec.TestSpecFactory;
@@ -129,6 +131,7 @@ void saveBytesToFile_shouldNotThrowExceptionWhenNoDirectory(@TempDir Path tempDi
129131
}
130132

131133
@Test
134+
@DisabledOnOs(OS.WINDOWS) // Can't set permissions on Windows
132135
void saveBytesToFile_shouldNotEscalateWhenIOException(@TempDir Path tempDir) {
133136
final DebugDataDumper manager = new DebugDataDumper(tempDir, true);
134137
final File invalidPath = tempDir.resolve("invalid").toFile();

0 commit comments

Comments
 (0)