2
0
mirror of https://github.com/mhinz/neovim-remote synced 2024-11-11 13:10:34 +00:00
neovim-remote/.travis.yml

25 lines
361 B
YAML
Raw Normal View History

2017-05-24 22:21:35 +00:00
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
2017-10-24 11:19:04 +00:00
notifications:
email:
on_success: never