Skip to content

Commit

Permalink
readyset-mysql: skip flaky finder for test
Browse files Browse the repository at this point in the history
This test has flaked a couple of times in the flaky finder only but
doesn't seem to flake otherwise, so this commit skips running the flaky
finder on it.

Change-Id: Ie307c01f25305a8e97614f439398b04a9d10cc5a
Reviewed-on: https://gerrit.readyset.name/c/readyset/+/4927
Tested-by: Buildkite CI
Reviewed-by: Peter Farr <peter@readyset.io>
  • Loading branch information
lukoktonos committed May 17, 2023
1 parent a7757a3 commit 2af1dea
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions readyset-mysql/tests/integration.rs
Expand Up @@ -18,6 +18,7 @@ use readyset_errors::ReadySetError;
use readyset_server::Handle;
use readyset_telemetry_reporter::{TelemetryEvent, TelemetryInitializer, TelemetryReporter};
use readyset_util::shutdown::ShutdownSender;
use test_utils::skip_flaky_finder;

async fn setup() -> (mysql_async::Opts, Handle, ShutdownSender) {
readyset_tracing::init_test_logging();
Expand Down Expand Up @@ -1859,6 +1860,7 @@ async fn non_default_db_in_connection_opts() {
}

#[tokio::test(flavor = "multi_thread")]
#[skip_flaky_finder]
async fn test_show_proxied_queries_telemetry() {
readyset_tracing::init_test_logging();
let (mut reporter, opts, _handle, shutdown_tx) = setup_telemetry().await;
Expand Down

0 comments on commit 2af1dea

Please sign in to comment.