summaryrefslogtreecommitdiff
path: root/doc/en/goodpractices.rst
diff options
context:
space:
mode:
authorSkylar Downes <skylarjhdownes@gmail.com>2016-09-15 16:45:35 -0700
committerGitHub <noreply@github.com>2016-09-15 16:45:35 -0700
commit34117be98b8c880787469e82df2c65ee7e534500 (patch)
tree0fd98a09a3ec3a15736ef3158789a8c9a3062545 /doc/en/goodpractices.rst
parent330a2f67841ff12f0fd69499cec39c4025fbbbe4 (diff)
downloadpytest-34117be98b8c880787469e82df2c65ee7e534500.tar.gz
Update goodpractices.rst
Diffstat (limited to 'doc/en/goodpractices.rst')
-rw-r--r--doc/en/goodpractices.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/en/goodpractices.rst b/doc/en/goodpractices.rst
index 3950171aa..c125cc7ca 100644
--- a/doc/en/goodpractices.rst
+++ b/doc/en/goodpractices.rst
@@ -64,7 +64,8 @@ Important notes relating to both schemes:
- **make sure that "mypkg" is importable**, for example by typing once::
pip install -e . # install package using setup.py in editable mode
- # similar to running python setup.py develop
+ # similar to running `python setup.py develop` or
+ # `conda develop`
This installs your package with a symlink to your development code
instead of placing the code directly in the install directory.