@@ -29,7 +29,7 @@ General Guidelines
2929Pipenv has one very important rule governing all forms of contribution,
3030including reporting bugs or requesting features. This golden rule is
3131\" [ be cordial or be on your
32- way] ( https://www. kennethreitz.org/essays/be-cordial-or-be-on-your-way ) \" .
32+ way] ( https://kennethreitz.org/essays/2013/01/27 /be-cordial-or-be-on-your-way ) \" .
3333
3434** All contributions are welcome** , as long as everyone involved is
3535treated with respect.
@@ -87,7 +87,7 @@ When contributing code, you\'ll want to follow this checklist:
87876 . Make your change.
88887 . Run the entire test suite again, confirming that all tests pass
8989 * including the ones you just added* .
90- 8 . Send a GitHub Pull Request to the main repository\' s ` master `
90+ 8 . Send a GitHub Pull Request to the main repository\' s ` main `
9191 branch. GitHub Pull Requests are the expected method of code
9292 collaboration on this project.
9393
@@ -115,13 +115,9 @@ details.
115115
116116### Testing
117117
118- Tests are written in ` pytest ` style and can be run very simply:
118+ Tests are written in ` pytest ` style.
119119
120- ``` {.sh}
121- pytest
122- ```
123-
124- This will run all Pipenv tests, which can take awhile. To run a subset
120+ Running all tests can take awhile. To run a subset
125121of the tests, the standard pytest filters are available, such as:
126122
127123- provide a directory or file: ` pytest tests/unit ` or
@@ -218,11 +214,11 @@ following things when filing bug reports:
218214Run the tests
219215-------------
220216
221- Three ways of running the tests are as follows:
217+ Two ways of running the tests are as follows:
222218
223- 1 . ` make test ` (which uses ` docker ` )
224- 2 . ` ./run-tests.sh ` or ` run-tests.bat `
225- 3 . Using pipenv:
219+ 1 . ` ./run-tests.sh ` or ` run-tests.bat `
220+ - NOTE: ` ./run-tests.sh ` is not working right now due to [ this issue ] ( https://github.com/pypa/pip/issues/7953#issuecomment-611928262 ) .
221+ 2 . Using pipenv:
226222
227223``` {.console}
228224$ git clone https://github.com/pypa/pipenv.git
@@ -232,7 +228,7 @@ $ pipenv install --dev
232228$ pipenv run pytest
233229```
234230
235- For the last two , it is important that your environment is setup
231+ To run tests , it is important that your environment is setup
236232correctly, and this may take some work, for example, on a specific Mac
237233installation, the following steps may be needed:
238234
0 commit comments