UltiSnips/.travis.yml

18 lines
603 B
YAML
Raw Normal View History

2015-02-14 14:38:17 +01:00
language: python
python:
2015-02-14 15:31:34 +01:00
# TOOD: add support for one python3 version. The problem here is Vim: we need to install a version of vim that
# has py3, but not py2. I could not figure this out so far.
2015-02-14 14:38:17 +01:00
- 2.7
before_script:
2015-02-14 15:31:34 +01:00
# Clone the dependent plugins we want to use.
- ./test_all.py --clone-plugins
# Install tmux (> 1.8) and vim.
2015-02-14 15:02:24 +01:00
- sudo add-apt-repository ppa:kalakris/tmux -y
2015-02-14 15:07:41 +01:00
- sudo apt-get update -qq
2015-02-14 15:02:24 +01:00
- sudo apt-get install -qq -y tmux vim-gnome
2015-02-14 15:31:34 +01:00
# Start the testing session.
2015-02-14 14:38:17 +01:00
- tmux new -d -s vim
2015-02-14 15:05:04 +01:00
- vim --version
2015-02-14 15:31:34 +01:00
script: ./test_all.py -v --plugins --interface tmux --session vim