Skip to content

Commit

Permalink
Reenable AWS e2e tests
Browse files Browse the repository at this point in the history
Reverts 0218f91
  • Loading branch information
MrSerth committed Sep 27, 2024
1 parent 5b64aee commit c684750
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,9 @@ jobs:
runs-on: ubuntu-latest
needs: [ compile, test ]
env:
POSEIDON_AWS_ENABLED: true
POSEIDON_AWS_ENDPOINT: ${{ secrets.POSEIDON_AWS_ENDPOINT }}
POSEIDON_AWS_FUNCTIONS: ${{ secrets.POSEIDON_AWS_FUNCTIONS }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/resources/.env
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
POSEIDON_AWS_ENABLED="false"
POSEIDON_AWS_ENABLED="true"
POSEIDON_AWS_ENDPOINT="${POSEIDON_AWS_ENDPOINT}"
POSEIDON_AWS_FUNCTIONS=""
POSEIDON_AWS_FUNCTIONS="${POSEIDON_AWS_FUNCTIONS}"
POSEIDON_LOGGER_FORMATTER="JSONFormatter"
POSEIDON_LOG_FILE="${GITHUB_WORKSPACE}/poseidon.log"
POSEIDON_NOMAD_DISABLEFORCEPULL="true"
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/environments_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"github.com/stretchr/testify/require"
)

var isAWSEnvironment = []bool{false}
var isAWSEnvironment = []bool{false, true}

func TestCreateOrUpdateEnvironment(t *testing.T) {
path := helpers.BuildURL(api.BasePath, api.EnvironmentsPath, tests.AnotherEnvironmentIDAsString)
Expand Down

0 comments on commit c684750

Please sign in to comment.