satellite/metainfo: skip TestUserAgentTransferStats

It's hard to make this test stable on CI but still can be
useful for local testing.

Change-Id: Iac5368d1a9179b67ea2409ee99bcf189db862897
This commit is contained in:
Michał Niewrzał 2022-05-23 18:35:42 +02:00 committed by Ivan Fraixedes
parent b662fc1ab2
commit 6759ba831c

View File

@ -19,7 +19,11 @@ import (
) )
func TestUserAgentTransferStats(t *testing.T) { func TestUserAgentTransferStats(t *testing.T) {
monkitRegistry := monkit.Default // bacause we are testing monkit there is no easy way to separate
// collected metrics from other tests run in parallel
t.Skipf("this test can be run only locally and without other tests in parallel")
monkitRegistry := monkit.NewRegistry()
environment.Register(monkitRegistry) environment.Register(monkitRegistry)
iteration := 0 iteration := 0