mark slow tests
This commit is contained in:
parent
bac187c4dc
commit
cf97e14ff0
|
@ -11,3 +11,4 @@
|
|||
/plugin_tools
|
||||
/.local-execution-hints.log
|
||||
/.local-*-execution-hints.log
|
||||
/eclipse-build/
|
||||
|
|
|
@ -24,6 +24,7 @@ import org.elasticsearch.common.settings.Settings;
|
|||
import org.elasticsearch.index.mapper.MapperParsingException;
|
||||
import org.elasticsearch.plugins.PluginsService;
|
||||
import org.junit.Test;
|
||||
import org.apache.lucene.util.LuceneTestCase.Slow;
|
||||
|
||||
import static org.elasticsearch.client.Requests.putMappingRequest;
|
||||
import static org.elasticsearch.common.io.Streams.copyToBytesFromClasspath;
|
||||
|
@ -36,6 +37,7 @@ import static org.hamcrest.Matchers.equalTo;
|
|||
/**
|
||||
* Test case for issue https://github.com/elasticsearch/elasticsearch-mapper-attachments/issues/18
|
||||
*/
|
||||
@Slow
|
||||
public class EncryptedAttachmentIntegrationTests extends AttachmentIntegrationTestCase {
|
||||
private boolean ignore_errors = true;
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@ import org.elasticsearch.search.highlight.HighlightField;
|
|||
import org.junit.Before;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.apache.lucene.util.LuceneTestCase.Slow;
|
||||
|
||||
import static org.elasticsearch.client.Requests.putMappingRequest;
|
||||
import static org.elasticsearch.common.io.Streams.copyToBytesFromClasspath;
|
||||
|
@ -37,11 +38,11 @@ import static org.elasticsearch.common.xcontent.XContentFactory.jsonBuilder;
|
|||
import static org.elasticsearch.index.query.QueryBuilders.matchQuery;
|
||||
import static org.elasticsearch.index.query.QueryBuilders.queryStringQuery;
|
||||
import static org.hamcrest.Matchers.*;
|
||||
import static org.hamcrest.Matchers.containsString;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Slow
|
||||
public class SimpleAttachmentIntegrationTests extends AttachmentIntegrationTestCase {
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue