Disable AWS e2e tests.

This commit is contained in:
Maximilian Paß
2023-03-11 16:42:42 +00:00
committed by Sebastian Serth
parent e877cd1e52
commit 0218f91cd4
2 changed files with 3 additions and 3 deletions

View File

@ -126,9 +126,9 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [ compile, test ] needs: [ compile, test ]
env: env:
POSEIDON_AWS_ENABLED: true POSEIDON_AWS_ENABLED: false
POSEIDON_AWS_ENDPOINT: ${{ secrets.POSEIDON_AWS_ENDPOINT }} POSEIDON_AWS_ENDPOINT: ${{ secrets.POSEIDON_AWS_ENDPOINT }}
POSEIDON_AWS_FUNCTIONS: ${{ secrets.POSEIDON_AWS_FUNCTIONS }} POSEIDON_AWS_FUNCTIONS: ""
POSEIDON_NOMAD_DISABLEFORCEPULL: true POSEIDON_NOMAD_DISABLEFORCEPULL: true
steps: steps:
- name: Checkout repository - name: Checkout repository

View File

@ -19,7 +19,7 @@ import (
"time" "time"
) )
var isAWSEnvironment = []bool{false, true} var isAWSEnvironment = []bool{false}
func TestCreateOrUpdateEnvironment(t *testing.T) { func TestCreateOrUpdateEnvironment(t *testing.T) {
path := helpers.BuildURL(api.BasePath, api.EnvironmentsPath, tests.AnotherEnvironmentIDAsString) path := helpers.BuildURL(api.BasePath, api.EnvironmentsPath, tests.AnotherEnvironmentIDAsString)