Skip to content

Commit

Permalink
disable FullSpecCppTest on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
lausdahl authored Jul 16, 2024
1 parent 5862d44 commit 836a407
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
import org.junit.jupiter.api.Assumptions;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;

import java.io.File;
import java.io.IOException;
Expand All @@ -28,6 +30,7 @@
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;

@DisabledOnOs(OS.WINDOWS)
public class FullSpecCppTest extends FullSpecTest {
public static final List<String> CACHE_FOLDERS = Arrays.asList("libzip", "rapidjson", "intocpsfmi-src");
static final File baseProjectPath = Paths.get("target", FullSpecCppTest.class.getSimpleName(), "_base").toFile().getAbsoluteFile();
Expand Down

0 comments on commit 836a407

Please sign in to comment.