run all tests, including plugins tests, on travis

This commit is contained in:
Bruno Pinto 2015-01-13 15:41:16 -02:00
parent 4fba87434c
commit 4d1e85fbe0
2 changed files with 6 additions and 1 deletions

View File

@ -6,4 +6,4 @@ env:
before_install: before_install:
- script/bootstrap.sh - script/bootstrap.sh
script: fish ./spec/oh-my-fish.spec.fish script: script/run-tests.fish

5
script/run-tests.fish Executable file
View File

@ -0,0 +1,5 @@
#!/usr/bin/env fish
for test in (find * -type f -print | grep 'spec.fish')
fish $test
end