Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 894 Bytes

CONTRIBUTING.md

File metadata and controls

27 lines (22 loc) · 894 Bytes

Contributing to Keras-RL

New contributors are very welcomed! If you're interested, please post a message on the Gitter.

Here is a list of ways you can contribute to this repository:

  • Tackle an open issue on Github
  • Improve documentation
  • Improve test coverage
  • Add examples
  • Implement new algorithms on Keras-RL (please get in touch on Gitter)
  • Link to your personal projects built on top of Keras-RL

How to run the tests

To run the tests locally, you'll first have to install the following dependencies:

pip install pytest pytest-xdist pep8 pytest-pep8 pytest-cov python-coveralls

You can then run all tests using this command:

py.test tests/.

If you want to check if the files conform to the PEP8 style guidelines, run the following command:

py.test --pep8