Skip to content

Commit

Permalink
Update DEVELOPMENT.
Browse files Browse the repository at this point in the history
  • Loading branch information
Junfeng Li committed Jan 5, 2018
1 parent bcf025b commit f49d05c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,24 @@
# Development
Put those settings inside vimrc,
```vim
let g:LanguageClient_devel = 1 "Use rust debug build
let g:LanguageClient_loggingLevel = 'DEBUG' "Use highest logging level
let g:LanguageClient_devel = 1 " Use rust debug build
let g:LanguageClient_loggingLevel = 'DEBUG' " Use highest logging level
```

1. Make necessary changes.
1. Build. `make` to build, format and run [clippy], or `make build` to run build only.
1. Verify changes.
1. Run tests
1. Run tests. (See below section)

[clippy]: https://github.com/rust-lang-nursery/rust-clippy

# Run tests
(Option 1) Refer [`Dockerfile`](Dockerfile) to install tests dependencies.
(Option 1. Recommended) With docker installed,
```sh
make test && make integration-test
make test && make integration-test-docker
```

(Option 2) With docker installed,
(Option 2) Refer [`Dockerfile`](Dockerfile) to install tests dependencies.
```sh
make test && make integration-test-docker
make test && make integration-test
```

0 comments on commit f49d05c

Please sign in to comment.