Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

Latest commit

 

History

History
26 lines (20 loc) · 575 Bytes

CONTRIBUTING.md

File metadata and controls

26 lines (20 loc) · 575 Bytes

How to contribute to Ray

Development

Build the enviroment

cd venv
./create_env.sh python3 # to use python 3
./create_env.sh python2.7 # to use python 2.7

How to run the tests

cd ray-core  # or any other dir
py.test tests/

If you wanna check the test coverage

cd ray-core
nosetests --tests=tests --with-coverage --cover-package=ray

Code style

Please, follow the PEP 8 style guide, but also, check the pep8 file, because some rules are not followed.