Skip to content

Mute CsvProcessor tests #4666

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tests/Tests/Ingest/ProcessorAssertions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
using Elastic.Xunit.XunitPlumbing;
using Nest;
using Tests.Core.Client;
using Tests.Core.Xunit;
using Tests.Domain;

namespace Tests.Ingest
Expand Down Expand Up @@ -70,7 +71,7 @@ public class Append : ProcessorAssertion
public override string Key => "append";
}

[SkipVersion("<7.7.0", "Empty Value introduced in Elasticsearch 7.7.0+, CSV introduced in 7.6.0+")]
[BlockedByIssue("https://github.com/elastic/elasticsearch/issues/55643")]
public class Csv : ProcessorAssertion
{
public override Func<ProcessorsDescriptor, IPromise<IList<IProcessor>>> Fluent => d => d
Expand Down
2 changes: 2 additions & 0 deletions tests/Tests/Ingest/PutPipeline/PutPipelineApiTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@
using Tests.Configuration;
using Tests.Core.Extensions;
using Tests.Core.ManagedElasticsearch.Clusters;
using Tests.Core.Xunit;
using Tests.Domain;
using Tests.Framework.EndpointTests;
using Tests.Framework.EndpointTests.TestState;

namespace Tests.Ingest.PutPipeline
{
[BlockedByIssue("https://github.com/elastic/elasticsearch/issues/55643")]
public class PutPipelineApiTests
: ApiIntegrationTestBase<XPackCluster, PutPipelineResponse, IPutPipelineRequest, PutPipelineDescriptor, PutPipelineRequest>
{
Expand Down