Ignore flaky metrics tests on CI (#832)

Fixes #831.

Proxy metrics tests `transport::inbound_tcp_accept` and `transport::inbound_tcp_duration` are known to be flaky and should be ignored on CI. Note that the outbound versions of these tests were already marked as flaky, so this was almost certainly either an oversight or the result of an incorrect merge.

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
This commit is contained in:
Eliza Weisman 2018-04-23 14:29:34 -07:00 committed by GitHub
parent a379cc079c
commit d27782b9d0
1 changed files with 3 additions and 0 deletions

View File

@ -855,6 +855,7 @@ mod transport {
}
#[test]
#[cfg_attr(not(feature = "flaky_tests"), ignore)]
fn inbound_tcp_accept() {
let _ = env_logger::try_init();
let TcpFixture { client, metrics, proxy: _proxy } =
@ -887,7 +888,9 @@ mod transport {
"tcp_accept_close_total{direction=\"inbound\",classification=\"success\"} 2");
}
// https://github.com/runconduit/conduit/issues/831
#[test]
#[cfg_attr(not(feature = "flaky_tests"), ignore)]
fn inbound_tcp_duration() {
let _ = env_logger::try_init();
let TcpFixture { client, metrics, proxy: _proxy } =