@@ -92,12 +92,11 @@ the following::
9292    $ mkdir -p ~/pyenv/zarr-dev 
9393    $ python -m venv ~/pyenv/zarr-dev 
9494    $ source ~/pyenv/zarr-dev/bin/activate 
95-     $ pip install -r requirements_dev_minimal.txt -r requirements_dev_numpy.txt 
96-     $ pip install -e .[docs] 
95+     $ pip install -e .[test,docs] 
9796
9897To verify that your development environment is working, you can run the unit tests::
9998
100-     $ python -m pytest -v zarr  
99+     $ python -m pytest -v tests  
101100
102101Creating a branch
103102~~~~~~~~~~~~~~~~~ 
@@ -149,7 +148,7 @@ and invoke::
149148Some tests require optional dependencies to be installed, otherwise
150149the tests will be skipped. To install all optional dependencies, run::
151150
152-     $ pip install -r requirements_dev_optional.txt  
151+     $ pip install pytest-doctestplus  
153152
154153To also run the doctests within docstrings (requires optional
155154dependencies to be installed), run::
@@ -234,7 +233,7 @@ should run and pass as doctests under Python 3.8. To run doctests,
234233activate your development environment, install optional requirements,
235234and run::
236235
237-     $ python -m pytest -v --doctest-plus zarr  
236+     $ python -m pytest -v --doctest-plus tests  
238237
239238Zarr uses Sphinx for documentation, hosted on readthedocs.org. Documentation is
240239written in the RestructuredText markup language (.rst files) in the ``docs `` folder.
0 commit comments