mirror of
https://github.com/mhinz/neovim-remote
synced 2024-11-11 13:10:34 +00:00
25 lines
361 B
YAML
25 lines
361 B
YAML
dist: trusty
|
|
sudo: false
|
|
|
|
language: python
|
|
|
|
python:
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
|
|
install:
|
|
- pip3 install .
|
|
- wget https://github.com/neovim/neovim/releases/download/nightly/nvim-linux64.tar.gz
|
|
- tar zxf nvim-linux64.tar.gz
|
|
|
|
before_script:
|
|
- export PATH=$PWD/nvim-linux64/bin:$PATH
|
|
|
|
script:
|
|
- pytest -v
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|