From 0218f91cd4399f20d908d5cc4c44cf0e37164ee6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Pa=C3=9F?= <22845248+mpass99@users.noreply.github.com> Date: Sat, 11 Mar 2023 16:42:42 +0000 Subject: [PATCH] Disable AWS e2e tests. --- .github/workflows/ci.yml | 4 ++-- tests/e2e/environments_test.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 065171b..a4e206a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -126,9 +126,9 @@ jobs: runs-on: ubuntu-latest needs: [ compile, test ] env: - POSEIDON_AWS_ENABLED: true + POSEIDON_AWS_ENABLED: false POSEIDON_AWS_ENDPOINT: ${{ secrets.POSEIDON_AWS_ENDPOINT }} - POSEIDON_AWS_FUNCTIONS: ${{ secrets.POSEIDON_AWS_FUNCTIONS }} + POSEIDON_AWS_FUNCTIONS: "" POSEIDON_NOMAD_DISABLEFORCEPULL: true steps: - name: Checkout repository diff --git a/tests/e2e/environments_test.go b/tests/e2e/environments_test.go index e1bf51b..b7ba237 100644 --- a/tests/e2e/environments_test.go +++ b/tests/e2e/environments_test.go @@ -19,7 +19,7 @@ import ( "time" ) -var isAWSEnvironment = []bool{false, true} +var isAWSEnvironment = []bool{false} func TestCreateOrUpdateEnvironment(t *testing.T) { path := helpers.BuildURL(api.BasePath, api.EnvironmentsPath, tests.AnotherEnvironmentIDAsString)