Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run integration tests on CI #33

Open
wants to merge 6 commits into
base: vim-mode-v2
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
language: python
language: ruby
os: osx
sudo: true

sudo: false
rvm:
- 2.6.3

env:
matrix:
Expand All @@ -13,13 +16,19 @@ before_install:
# into 'here' subdirectory
- export PATH=$PATH:$PWD/here/bin # Add directory with all installed binaries to PATH
- eval `luarocks path --bin`
- bin/dev-setup

branches:
only:
- master
- vim-mode-v2

install:
- echo "Nothing to install"
- bin/dev-setup
- bundle install

script:
- busted -c
- bundle exec rake spec

after_success:
- luacov-coveralls -v
Expand Down