Skip to content

Commit

Permalink
docs: update test command in README and CONTRIBUTING (ory#183)
Browse files Browse the repository at this point in the history
Signed-off-by: Wyatt Anderson <[email protected]>
  • Loading branch information
budougumi0617 committed Jun 21, 2017
1 parent f97b359 commit 9fbf2a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ To make a pull request, you will need a GitHub account; if you are unclear on th

1. Create a feature branch off of `master` so that changes do not get mixed up.
1. [Rebase](https://git-scm.com/book/en/Git-Branching-Rebasing) your local changes against the `master` branch.
1. Run the full project test suite with the `go test ./...` (or equivalent) command and confirm that it passes.
1. Run the full project test suite with the `go test $(glide novendor)` (or equivalent) command and confirm that it passes.
1. Run `gofmt -s` (if the project is written in Go).
1. Accept the Developer's Certificate of Origin on all commits (see above).
1. Ensure that each commit has a subsystem prefix (ex: `controller: `).
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -351,10 +351,10 @@ go get -d github.com/ory/fosite
cd $GOPATH/src/github.com/ory/fosite
git status
git remote add myfork <url-to-your-fork>
go test ./...
go test $(glide novendor)
```

Simple, right? Now you are ready to go! Make sure to run `go test ./...` often, detecting problems with your code
Simple, right? Now you are ready to go! Make sure to run `go test $(glide novendor)` often, detecting problems with your code
rather sooner than later. Please read [CONTRIBUTE.md] before creating pull requests and issues.

### Refresh mock objects
Expand Down

0 comments on commit 9fbf2a8

Please sign in to comment.