@@ -68,8 +68,8 @@ First we'll create and activate the build environment:
6868
6969.. code-block :: sh
7070
71- conda env create --file ci/requirements/environment .yml
72- conda activate cupy-xarray-tests
71+ conda env create --file ci/doc .yml
72+ conda activate cupy-xarray
7373
7474 At this point you should be able to import *cupy-xarray * from your locally
7575built version.
@@ -130,8 +130,10 @@ Running the test suite
130130----------------------
131131
132132*cupy-xarray * uses the `pytest <https://docs.pytest.org/en/latest/contents.html >`_
133- framework for testing. You can run the test suite using::
133+ framework for testing. You'll need to install some dependencies and then run the test
134+ suite like so::
134135
136+ pip install --group test
135137 pytest --doctest-modules cupy_xarray
136138
137139Contributing documentation
@@ -140,11 +142,11 @@ Contributing documentation
140142We greatly appreciate documentation improvements. The docs are built from the docstrings
141143in the code and the docs in the ``docs `` directory.
142144
143- To build the documentation , you will need to requirements listed in ``ci/doc.yml ``.
145+ To build the docs , you will need to install the requirements listed in ``ci/doc.yml ``.
144146You can create an environment for building the documentation using::
145147
146148 conda env create --file ci/doc.yml
147- conda activate cupy-xarray-doc
149+ conda activate cupy-xarray
148150
149151You can then build the documentation using::
150152
0 commit comments