From 8041714728b0e646281ed948b7511d9ffb486e98 Mon Sep 17 00:00:00 2001 From: guillaume Date: Tue, 11 Jan 2022 11:43:35 +0100 Subject: [PATCH 1/2] Temporary skip netlify test Netlify-cli got a regression from one of its libraries: prettyjson. Cf. https://github.com/rafeca/prettyjson/issues/58 This PR comments the test until netlify gets fixed. Shouldn't take that long Cf. https://github.com/netlify/cli/issues/4011 Signed-off-by: guillaume --- stdlib/universe.bats | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlib/universe.bats b/stdlib/universe.bats index 2b04a0b8..7afa3ecc 100644 --- a/stdlib/universe.bats +++ b/stdlib/universe.bats @@ -43,6 +43,7 @@ setup() { } @test "netlify" { + skip "Temporary skip due to a regression in one of netlify's libraries" dagger -e netlify up } From bd546216118103e025784f7df68edd0dd2055e8a Mon Sep 17 00:00:00 2001 From: guillaume Date: Tue, 11 Jan 2022 12:46:40 +0100 Subject: [PATCH 2/2] Temporary disable eks test In order to reduce aws bill, we removed the EKS cluster on which this test is being run. We can port that test to Localstack to reduce bill. Signed-off-by: guillaume --- stdlib/universe.bats | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlib/universe.bats b/stdlib/universe.bats index 7afa3ecc..c57a682a 100644 --- a/stdlib/universe.bats +++ b/stdlib/universe.bats @@ -80,6 +80,7 @@ setup() { } @test "aws: eks" { + skip "Temporary skip until porting to localstack" dagger -e aws-eks up }