You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
neovim-remote/.travis.yml

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