Skip to content

Commit 7cbafb1

Browse files
author
Aaron Schlesinger
committed
doc(README.md): remove many more first-person pronouns
1 parent 26cdccb commit 7cbafb1

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,23 +35,25 @@ The Deis project welcomes contributions from all developers. The high level proc
3535

3636
The preferred environment for development uses [the `go-dev` Docker image](https://github.com/deis/docker-go-dev). The tools described in this section to build, test, package and release each version of Deis.
3737

38-
To use it yourself, we require that you have [make](https://www.gnu.org/software/make/) installed and Docker installed and running on your local development machine to use this method of development.
38+
To use it yourself, you must have [make](https://www.gnu.org/software/make/) installed and Docker installed and running on your local development machine.
3939

4040
If you don't have Docker installed, please go to https://www.docker.com/ to install it.
4141

42-
After you have those dependencies, you can build and unit-test your code with `make build` and `make test`, respectively.
42+
After you have those dependencies, build your code with `make build` and execute unit tests with `make test`.
4343

4444
## Native Go Development Environment
4545

46-
Although we prefer the Docker based development environment, you can also use the standard `go` toolchain to build and test. To do so, you'll [glide](https://github.com/Masterminds/glide) 0.9 or above and [Go 1.6](http://golang.org) or above.
46+
You can also use the standard `go` toolchain to build and test if you prefer. To do so, you'll need [glide](https://github.com/Masterminds/glide) 0.9 or above and [Go 1.6](http://golang.org) or above installed.
4747

4848
After you have those dependencies, you can build and unit-test your code with `go build` and `go test $(glide nv)`, respectively.
4949

5050
Note that you will not be able to build or push Docker images using this method of development.
5151

5252
# Testing
5353

54-
We require that as much code as possible is unit tested, but also recognize that some code must be tested at a higher level (functional or integration tests, for example). In order to set up and run such tests, we've built [end-to-end tests](https://github.com/deis/workflow-e2e) and also periodically dogfood our product. Since this component is at the center of much of the Deis platform, we find it especially important to dogfood it.
54+
The Deis project requires that as much code as possible is unit tested, but the core contributors also recognize that some code must be tested at a higher level (functional or integration tests, for example).
55+
56+
The [end-to-end tests](https://github.com/deis/workflow-e2e) repository has our integration tests. Additionally, the core contributors and members of the community also regularly dogfood the platfomr. Since this particular component is at the center of much of the Deis platform, we find it especially important to dogfood it.
5557

5658
## Running End to End Tests
5759

0 commit comments

Comments
 (0)