2015-02-14 08:38:17 -05:00
|
|
|
language: python
|
|
|
|
|
|
|
|
python:
|
2015-02-14 09:31:34 -05: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 08:38:17 -05:00
|
|
|
- 2.7
|
|
|
|
before_script:
|
2015-02-14 09:31:34 -05:00
|
|
|
# Clone the dependent plugins we want to use.
|
|
|
|
- ./test_all.py --clone-plugins
|
|
|
|
# Install tmux (> 1.8) and vim.
|
2015-02-14 09:02:24 -05:00
|
|
|
- sudo add-apt-repository ppa:kalakris/tmux -y
|
2015-02-14 09:07:41 -05:00
|
|
|
- sudo apt-get update -qq
|
2015-02-14 09:02:24 -05:00
|
|
|
- sudo apt-get install -qq -y tmux vim-gnome
|
2015-02-14 09:31:34 -05:00
|
|
|
# Start the testing session.
|
2015-02-14 08:38:17 -05:00
|
|
|
- tmux new -d -s vim
|
2015-02-14 09:05:04 -05:00
|
|
|
- vim --version
|
2015-02-14 09:31:34 -05:00
|
|
|
script: ./test_all.py -v --plugins --interface tmux --session vim
|