Skip to content
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

Clean up in destination acceptance tests #21178

Merged
merged 1 commit into from
Jan 9, 2023
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@
import org.joda.time.DateTime;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtensionContext;
import org.junit.jupiter.params.ParameterizedTest;
Expand Down Expand Up @@ -661,11 +662,6 @@ public void testIncrementalSyncWithNormalizationDropOneColumn()
MoreResources.readResource(DataArgumentsProvider.EXCHANGE_RATE_CONFIG.getCatalogFileVersion(ProtocolVersion.V0)),
AirbyteCatalog.class);

if (!catalog.getStreams().get(0).getName().equals("exchange_rate")) {
// This test is only implemented for the exchange rate catalog.
return;
}

final ConfiguredAirbyteCatalog configuredCatalog = CatalogHelpers.toDefaultConfiguredCatalog(
catalog);
configuredCatalog.getStreams().forEach(s -> {
Expand Down Expand Up @@ -1535,6 +1531,7 @@ public String toString() {
* your_containers_id" (ex. docker container attach 18cc929f44c8) to see the container's output
*/
@Test
@Disabled
public void testStressPerformance() throws Exception {
final int streamsSize = 5; // number of generated streams
final int messagesNumber = 300; // number of msg to be written to each generated stream
Expand Down