@@ -5,7 +5,7 @@ Exercism would be impossible without people like you being willing to spend time
55
66## Dependencies
77
8- You'll need Go version 1.8 or higher. Follow the directions on http://golang.org/doc/install
8+ You'll need Go version 1.9 or higher. Follow the directions on http://golang.org/doc/install
99
1010You will also need ` dep ` , the Go dependency management tool. Follow the directions on https://golang.github.io/dep/docs/installation.html
1111
@@ -19,7 +19,7 @@ If you don't care how and why and just want something that works, follow these s
1919
20201 . [ fork this repo on the GitHub webpage] [ fork ]
21211 . ` go get github.com/exercism/cli/exercism `
22- 1 . ` cd $GOPATH/src/github.com/exercism/cli ` (or ` cd %GOPATH%/ src/ github.com/ exercism/ cli ` on Windows)
22+ 1 . ` cd $GOPATH/src/github.com/exercism/cli ` (or ` cd %GOPATH%\ src\ github.com\ exercism\ cli ` on Windows)
23231 . ` git remote rename origin upstream `
24241 . ` git remote add origin git@github.com:<your-github-username>/cli.git `
25251 . ` git checkout -b development `
@@ -35,20 +35,12 @@ If you care about the details, check out the blog post [Contributing to Open Sou
3535
3636## Running the Tests
3737
38- To run the tests locally on Linux or MacOS, use
38+ To run the tests locally
3939
4040```
41- go test $(go list ./... | grep -v vendor)
41+ go test ./...
4242```
4343
44- On Windows, the command is more painful (sorry!):
45-
46- ```
47- for /f "" %G in ('go list ./... ^| find /i /v "/vendor/"') do @go test %G
48- ```
49-
50- As of Go 1.9 this is simplified to ` go test ./... ` .
51-
5244## Manual Testing against Exercism
5345
5446To test your changes while doing everyday Exercism work you
@@ -66,7 +58,7 @@ On Windows:
6658
6759- ` cd /d %GOPATH%\src\github.com\exercism\cli `
6860- ` go build -o testercism.exe exercism\main.go `
69- - ` testercism.exe —help `
61+ - ` testercism.exe —h `
7062
7163### Building for All Platforms
7264
0 commit comments