Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 716 Bytes

CONTRIBUTING.md

File metadata and controls

29 lines (23 loc) · 716 Bytes

Prerequisites

Development

Put those settings inside vimrc,

let g:LanguageClient_devel = 1 " Use rust debug build
let g:LanguageClient_loggingLevel = 'DEBUG' " Use highest logging level
  1. Make necessary changes.
  2. Build. make to build, format and run clippy, or make build to run build only.
  3. Verify changes.
  4. Run tests. (See below section)

Run tests

(Option 1. Recommended) With docker installed,

make test && make integration-test-docker

(Option 2) Refer Dockerfile to install tests dependencies.

make test && make integration-test