Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 568 Bytes

DEVELOPMENT.rst

File metadata and controls

35 lines (23 loc) · 568 Bytes

Installation

$ git clone git@github.com:castle/castle-python.git
$ cd castle-python
$ python3 setup.py install

Test

$ python3 setup.py test

Linting

$ pip3 install pylint
$ pip3 install --upgrade pep8
$ pip3 install --upgrade autopep8
$ pylint --rcfile=./pylintrc castle
$ autopep8 --in-place -r castle

Coverage

$ pip3 install coverage
$ coverage run setup.py test