Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 5c9811f

Browse files
Use bin/test.bash for running tests (#16)
Signed-off-by: Brandon Roberson <[email protected]> Signed-off-by: Amin Jamali <[email protected]>
1 parent 045f777 commit 5c9811f

File tree

3 files changed

+23
-7
lines changed

3 files changed

+23
-7
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,3 +94,18 @@ rtr register --api https://api.example.com --client-id admin --client-secret adm
9494

9595
rtr unregister --api https://api.example.com --client-id admin --client-secret admin-secret --oauth-url https://uaa.example.com '[{"route":"undesiredroute.com","port":12345,"ip":"1.2.3.4"}]'
9696
```
97+
98+
## Development
99+
100+
### <a name="dependencies"></a>Dependencies
101+
102+
This repository's dependencies are managed using
103+
[routing-release](https://github.com/cloudfoundry/routing-release). Please refer to documentation in that repository for setting up tests
104+
105+
### Executables
106+
107+
1. `bin/test.bash`: This file is used to run test in Docker & CI. Please refer to [Dependencies](#dependencies) for setting up tests.
108+
109+
### Reporting issues and requesting features
110+
111+
Please report all issues and feature requests in [cloudfoundry/routing-release](https://github.com/cloudfoundry/routing-release).

bin/test

Lines changed: 0 additions & 7 deletions
This file was deleted.

bin/test.bash

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/bash
2+
3+
set -eu
4+
set -o pipefail
5+
6+
# shellcheck disable=SC2068
7+
# Double-quoting array expansion here causes ginkgo to fail
8+
go run github.com/onsi/ginkgo/v2/ginkgo ${@}

0 commit comments

Comments
 (0)