Skip to content

Commit 54f811b

Browse files
authored
chore: remove verbose flag from e2e tests (#617)
Signed-off-by: Michael Beemer <[email protected]>
1 parent 6da46d9 commit 54f811b

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

CONTRIBUTING.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
go 1.19+ is recommended.
66

77
## Setup workspace
8-
8+
99
Run the following command to set up the go workspace:
1010

1111
```shell
@@ -31,7 +31,7 @@ make MODULE_NAME=NAME new-provider
3131

3232
To automatically create and set up a new hook directory, use the following command (requires [jq](https://jqlang.github.io/jq/)):
3333

34-
```
34+
```shell
3535
make MODULE_NAME=NAME new-hook
3636
```
3737

@@ -40,7 +40,7 @@ Note - [jq documentation](https://stedolan.github.io/jq/download/)
4040
### Versioning
4141

4242
The release version of the newly added module(hook/provider) is controlled by `.release-please-manifest.json`.
43-
You can control the versioning of your module by adding an entry with desired initial version(ex:`"provider/acme":"0.0.1"`).
43+
You can control the versioning of your module by adding an entry with desired initial version(ex:`"provider/acme":"0.0.1"`).
4444
Otherwise, default versioning will start from `1.0.0`.
4545

4646
## Documentation
@@ -58,7 +58,7 @@ To run tests in all existing go modules, use the command:
5858
make test
5959
```
6060

61-
It is recommended to include end-to-end (e2e) tests in your provider when possible.
61+
It is recommended to include end-to-end (e2e) tests in your provider when possible.
6262
If you have dependency services for your e2e tests, make sure to add them as service in the build pipeline.
6363
Also, make sure to include them in the makefile for easy use by contributors.
6464

@@ -88,4 +88,3 @@ Merging the Release Please PR will create a GitHub release with updated library
8888
## Dependencies
8989

9090
The [GO-SDK](https://github.com/open-feature/go-sdk) should be a _peer dependency_ of your module.
91-

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ e2e-remove-helpers:
2424
docker rm $(FLAGD_SYNC)
2525

2626
e2e:
27-
go clean -testcache && go list -f '{{.Dir}}/...' -m | xargs -I{} go test -tags=e2e -v {}
27+
go clean -testcache && go list -f '{{.Dir}}/...' -m | xargs -I{} go test -tags=e2e {}
2828

2929
lint:
3030
go install -v github.com/golangci/golangci-lint/cmd/[email protected]

0 commit comments

Comments
 (0)