Skip to content

Commit add4c8e

Browse files
Merge pull request cloudfoundry#6 from cloudfoundry/with-bin/test.bash
Use bin/test.bash for running tests
2 parents 0623381 + ab6d83d commit add4c8e

File tree

3 files changed

+21
-22
lines changed

3 files changed

+21
-22
lines changed

README.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
`multierror` is a simple go package that allows you to combine and present multiple errors as a single error.
44

5-
# Installation
6-
Run `go get github.com/cloudfoundry/multierror`
7-
85
# How to use
96

107
```go
@@ -28,4 +25,17 @@ errors.Add(errors2)
2825
errors.Error()
2926
```
3027

28+
## Development
29+
30+
### <a name="dependencies"></a>Dependencies
31+
32+
This repository's dependencies are managed using
33+
[routing-release](https://github.com/cloudfoundry/routing-release). Please refer to documentation in that repository for setting up tests
34+
35+
### Executables
36+
37+
1. `bin/test.bash`: This file is used to run test in Docker & CI. Please refer to [Dependencies](#dependencies) for setting up tests.
38+
39+
### Reporting issues and requesting features
3140

41+
Please report all issues and feature requests in [cloudfoundry/routing-release](https://github.com/cloudfoundry/routing-release).

bin/test

Lines changed: 0 additions & 19 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)