Revert "Re-enable windows archives packaging tests (#57955)"
This reverts commit 573c6279af
.
This commit is contained in:
parent
7442808869
commit
d9e547dbd3
|
@ -53,6 +53,7 @@ import static org.hamcrest.CoreMatchers.is;
|
|||
import static org.hamcrest.CoreMatchers.not;
|
||||
import static org.hamcrest.Matchers.emptyString;
|
||||
import static org.hamcrest.Matchers.startsWith;
|
||||
import static org.junit.Assume.assumeFalse;
|
||||
import static org.junit.Assume.assumeThat;
|
||||
import static org.junit.Assume.assumeTrue;
|
||||
|
||||
|
@ -60,6 +61,9 @@ public class ArchiveTests extends PackagingTestCase {
|
|||
|
||||
@BeforeClass
|
||||
public static void filterDistros() {
|
||||
// Muted on Windows see: https://github.com/elastic/elasticsearch/issues/50825
|
||||
assumeFalse(System.getProperty("os.name").startsWith("Windows"));
|
||||
|
||||
assumeTrue("only archives", distribution.isArchive());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue