Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 1.01 KB

CONTRIBUTING.rst

File metadata and controls

37 lines (24 loc) · 1.01 KB

How To Contribute

vim-python-pep8-indent is always open for suggestions and contributions by generous developers. I’ve collected a few tips to get you started.

Please:

Running Tests

  • They are written in Ruby (sorry :() using vimrunner which requires rspec.

  • The tests go into spec/indent/indent_spec.rb. Look at the describe blocks to get the hang of it.

  • Run the tests with the command:

    $ rspec spec
    
  • Alternatively you can use Docker:

    $ make test_docker
    
  • You can select tests based on line numbers, e.g.:

    $ rspec ./spec/indent/indent_spec.rb:385
    $ make test_docker RSPEC_ARGS=./spec/indent/indent_spec.rb:385
    

Thank you for considering to contribute!