Revert "Re-enable windows archives packaging tests (#57955)"

This reverts commit 573c6279af.
This commit is contained in:
Mark Vieira 2020-06-11 11:58:56 -07:00
parent 7442808869
commit d9e547dbd3
No known key found for this signature in database
GPG Key ID: CA947EF7E6D4B105
1 changed files with 4 additions and 0 deletions

View File

@ -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());
}