Skip to content

Commit

Permalink
add mnemonics for k8s module
Browse files Browse the repository at this point in the history
  • Loading branch information
rawdaGastan committed Sep 5, 2024
1 parent f22439b commit 85535ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/test_modules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,18 +50,12 @@ jobs:
- name: Test kubernetes module
env:
MNEMONIC: ${{ secrets.MNEMONICS }}
MNEMONICS: ${{ secrets.MNEMONICS }}
NETWORK: ${{ matrix.network }}
working-directory: integrationtests
run: |
go test -v ./... --tags=integration -run TestModuleK8s
- name: Test Gateways
env:
MNEMONIC: ${{ secrets.MNEMONICS }}
NETWORK: ${{ matrix.network }}
working-directory: integrationtests
run: go test -v ./... --tags=integration -run TestGatewayDeployments

- name: Test nomad module
env:
MNEMONIC: ${{ secrets.MNEMONICS }}
Expand Down
2 changes: 1 addition & 1 deletion integrationtests/remoterun.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func RemoteRun(user string, addr string, cmd string, privateKey string) (string,

output, err := session.CombinedOutput(cmd)
if err != nil {
return "", errors.Wrapf(err, "could not excute command on remote with output %s", output)
return "", errors.Wrapf(err, "could not execute command on remote with output %s", output)
}
return string(output), nil
}
Expand Down

0 comments on commit 85535ff

Please sign in to comment.