1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 05:40:05 +08:00
SpaceVim/bundle/clever-f.vim/test/README.md

43 lines
1.1 KiB
Markdown
Raw Normal View History

2020-06-13 14:06:35 +08:00
## How to execute tests
[vim-themis](https://github.com/thinca/vim-themis) is required.
2020-06-13 14:06:35 +08:00
For example, the following clones it locally in clever-f.vim repository.
2020-06-13 14:06:35 +08:00
```console
$ cd /path/to/clever-f.vim/test
$ git clone https://github.com/thinca/vim-themis
$ ./vim-themis/bin/themis .
```
## How to measure code coverage
[covimerage](https://github.com/Vimjas/covimerage) is required. I recommend to use
[venv](https://docs.python.org/3/library/venv.html) for installing it locally.
2020-06-13 14:06:35 +08:00
```console
$ python -m venv venv
$ source ./venv/bin/activate
2020-06-13 14:06:35 +08:00
$ pip install covimerage
$ cd /path/to/clever-f.vim/test
# Run tests with profiling
$ PROFILE_LOG=profile.txt ./vim-themis/bin/themis .
# Create a coverage file using profile results
$ covimerage write_coverage profile.txt
# See the coverage results in console output
$ coverage report
# See the coverage results in test/htmlcov/index.html
$ coverage html
```
## CI
CI runs on Linux, macOS and Windows using GitHub Actions: https://github.com/rhysd/clever-f.vim/actions?query=workflow%3ACI
2020-06-13 14:06:35 +08:00
Coverage is tracked with codecov.io: https://codecov.io/gh/rhysd/clever-f.vim