From 6af93b18069f29d96ce1a0a8422986894e295126 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Fri, 1 Mar 2024 12:58:15 +0100 Subject: [PATCH] test: skipping api-test (#2015) --- internal/e2e/errors_test.go | 1 + internal/e2e/human_test.go | 2 ++ 2 files changed, 3 insertions(+) diff --git a/internal/e2e/errors_test.go b/internal/e2e/errors_test.go index b7d55107..2f82e4f1 100644 --- a/internal/e2e/errors_test.go +++ b/internal/e2e/errors_test.go @@ -9,6 +9,7 @@ import ( ) func TestStandardErrors(t *testing.T) { + t.Skip("Skipping test while api-test not yet deployed") client, _, _, err := newE2EClient(true) testhelpers.AssertNoError(t, err) diff --git a/internal/e2e/human_test.go b/internal/e2e/human_test.go index b8ba8862..a4ef6c7c 100644 --- a/internal/e2e/human_test.go +++ b/internal/e2e/human_test.go @@ -43,6 +43,7 @@ func newE2EClient(withAuthInClient bool) (*test.API, string, string, error) { } func TestAuthInRequest(t *testing.T) { + t.Skip("Skipping test while api-test not yet deployed") client, accessKey, secretKey, err := newE2EClient(false) testhelpers.AssertNoError(t, err) @@ -52,6 +53,7 @@ func TestAuthInRequest(t *testing.T) { } func TestHuman(t *testing.T) { + t.Skip("Skipping test while api-test not yet deployed") client, _, _, err := newE2EClient(true) testhelpers.AssertNoError(t, err)