Skip flakky tests
authorCyril Brulebois <cyril@debamax.com>
Wed, 15 Feb 2023 09:55:43 +0000 (10:55 +0100)
committerCyril Brulebois <cyril@debamax.com>
Wed, 15 Feb 2023 10:03:10 +0000 (10:03 +0000)
Both aim at checking performance, and might error out when the underlying
system is “slow”. That was the case for the first test on arm64 (KO on
arm-arm-01, OK on arm-ubc-03) and on armel (KO on arm-ubc-06, OK on
arm-conova-02), and for the second test on mipsel (KO on mipsel-aql-02).

The same might happen on ci.debian.net, so disable both tests everywhere.

Gbp-Pq: Name 0013-skip-flakky-tests.patch

pkg/apiserver/apic_test.go
pkg/time/rate/rate_test.go

index a06a750d83661aaf0f37e166b0056debadb982c0..3a97c790b689cc9bb0afbb9d2acd026864c458c7 100644 (file)
@@ -699,6 +699,7 @@ func TestAPICPush(t *testing.T) {
 }
 
 func TestAPICSendMetrics(t *testing.T) {
+       t.Skip()
        tests := []struct {
                name            string
                duration        time.Duration
index 6df94127abf600e9a83be5f3feee1a8d207b219f..a212ce1d4d1f82274ba752af06171ddde98f358f 100644 (file)
@@ -175,6 +175,7 @@ func TestSimultaneousRequests(t *testing.T) {
 }
 
 func TestLongRunningQPS(t *testing.T) {
+       t.Skip()
        if testing.Short() {
                t.Skip("skipping in short mode")
        }