Skip to content

Commit

Permalink
Remove unused scripts
Browse files Browse the repository at this point in the history
This change removes `start-test-agent` and `reload-bpm` from the scripts
directory. It also updates the `CONTRIBUTING.md` to instruct users to
run the acceptance tests using the `bosh-lite-acceptance-test` script.

This change also updates the `test-with-concourse` to work with newer
versions of concourse.
  • Loading branch information
jfmyers9 committed Feb 27, 2018
1 parent 276c734 commit 52d5ab4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 54 deletions.
6 changes: 2 additions & 4 deletions CONTRIBUTING.md
Expand Up @@ -52,10 +52,8 @@ $ cd bpm-release
$ ./scripts/test-with-docker
```

2. To run the acceptance tests against docker
2. To run the acceptance tests against bosh-lite
```bash
$ cd bpm-release
$ ./scripts/start-docker # this will launch you into the docker shell
/go# /bpm/scripts/start-test-agent
/go# ginkgo -r -p -race /bpm/src/bpm/acceptance -- --agent-uri="http://127.0.0.1:1337"
$ ./scripts/bosh-lite-acceptance-test
```
8 changes: 0 additions & 8 deletions scripts/reload-bpm

This file was deleted.

38 changes: 0 additions & 38 deletions scripts/start-test-agent

This file was deleted.

7 changes: 3 additions & 4 deletions scripts/test-with-concourse
Expand Up @@ -4,9 +4,8 @@ absolute_path() {
(cd $1 && pwd)
}

FLY_TARGET=${FLY_TARGET:-ci}

scripts_path=$(absolute_path `dirname $0`)

fly -t ci execute \
-x \
-p \
-c ${scripts_path}/../ci/test-unit.yml "$@"
fly -t ${FLY_TARGET} execute -p -c ${scripts_path}/../ci/test-unit.yml "$@"

0 comments on commit 52d5ab4

Please sign in to comment.