Skip to content

Commit f4d42c8

Browse files
Replace pip install -e with pip install -r requirements_test_min.txt (#6588)
Co-authored-by: Daniël van Noord <[email protected]>
1 parent 366fd72 commit f4d42c8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

doc/development_guide/testing.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ Pylint is very well tested and has a high code coverage. New contributions are n
1414
unless they include tests.
1515

1616
Before you start testing your code, you need to install your source-code package locally.
17-
To set up your environment for testing, open a terminal outside of your forked repository and run:
17+
Suppose you have cloned pylint into a directory, say ``my-pylint``.
18+
To set up your environment for testing, open a terminal and run:
1819

19-
pip install -e <forked_repo_dir_name>
20+
cd my-pylint
21+
pip install -r requirements_test_min.txt
2022

2123
This ensures your testing environment is similar to Pylint's testing environment on GitHub.
2224

0 commit comments

Comments
 (0)