[doc] update testing and dev instructions (#3562)

* [doc] update python testing command

* update installation/dev instructions
This commit is contained in:
Alexey Tumanov
2018-12-18 14:45:24 -08:00
committed by Philipp Moritz
parent 26ca40817e
commit 3822b20319
+17 -2
View File
@@ -120,7 +120,8 @@ that you've cloned the git repository.
.. code-block:: bash
python test/runtest.py
export PYTHONPATH="$PYTHONPATH:./test/"
python -m pytest test/runtest.py
Cleaning the source tree
~~~~~~~~~~~~~~~~~~~~~~~~
@@ -131,4 +132,18 @@ The source tree can be cleaned by running
git clean -f -f -x -d
in the ``ray/`` directory.
in the ``ray/`` directory. Warning: this command will delete all untracked files
and directories and will reset the repository to its checked out state.
For a shallower working directory cleanup, you may want to try:
.. code-block:: bash
rm -rf ./build
under ``ray/``. Incremental builds should work as follows:
.. code-block:: bash
pushd ./build && make && popd
under ``ray/``.