Skip to content

Commit 4829c37

Browse files
author
Gabriel Monroy
committed
Merge pull request #2225 from mboersma/fix-test-smoke
fix(tests): update smoke test for removal of clusters
2 parents 59cfb19 + 356967e commit 4829c37

4 files changed

Lines changed: 5 additions & 16 deletions

File tree

contrib/bumpver/README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ $ ./contrib/bumpver/bumpver -f 0.13.0-dev 0.13.3 \
3636
deisctl/deisctl.go \
3737
deisctl/README.md \
3838
controller/deis/__init__.py \
39-
README.md \
40-
tests/bin/test-latest.sh
39+
README.md
4140
$ # update from the first semver string found
4241
$ # this type of command should now be enough to bump everything
4342
$ ./contrib/bumpver/bumpver 0.14.0 \
@@ -49,8 +48,7 @@ $ ./contrib/bumpver/bumpver 0.14.0 \
4948
deisctl/README.md \
5049
contrib/coreos/user-data \
5150
controller/deis/__init__.py \
52-
README.md \
53-
tests/bin/test-latest.sh
51+
README.md
5452
```
5553

5654
Of course, you should **always** check the changes with `git diff` before committing

docs/contributing/releases.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ deis repo
3434
deisctl/cmd/cmd.go \
3535
contrib/coreos/user-data \
3636
controller/deis/__init__.py \
37-
README.md \
38-
tests/bin/test-latest.sh
37+
README.md
3938
4039
- Commit and push the deis/deis release and tag
4140
* ``git commit -a -m 'chore(release): update version to vX.Y.Z'``

tests/bin/test-latest.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ log_phase "Installing clients"
2424

2525
# install deis CLI from http://deis.io/ website
2626
pushd $DEIS_ROOT/deisctl
27-
curl -sSL http://deis.io/deis-cli/install.sh | sh -s 0.14.0
27+
curl -sSL http://deis.io/deis-cli/install.sh | sh
2828
popd
2929

3030
# install deisctl from http://deis.io/ website
3131
# installs latest unit files to $HOME/.deis/units
3232
pushd $DEIS_ROOT/client
33-
curl -sSL http://deis.io/deisctl/install.sh | sh -s 0.14.0
33+
curl -sSL http://deis.io/deisctl/install.sh | sh
3434
popd
3535

3636
# ensure we use distributed unit files

tests/smoke_test.go

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,6 @@ deis login http://deis.{{.Domain}} \
4949
// Add the "deis" SSH key, or skip if it's been added already.
5050
{"", `
5151
deis keys:add {{.AuthKey}}.pub || true
52-
`},
53-
// Destroy the "dev" cluster if it exists.
54-
{"", `
55-
deis clusters:destroy dev --confirm=dev || true
56-
`},
57-
// Create a cluster named "dev".
58-
{"", `
59-
deis init dev {{.Domain}} --hosts={{.Hosts}} --auth={{.SSHKey}}
6052
`},
6153
// Clone the example app git repository locally.
6254
{"", `

0 commit comments

Comments
 (0)