Add Rakefile for openstack CI

Change-Id: I9c9edb2b75ea36d18e167b308bd2b5a10b81f701
This commit is contained in:
Alexey Shtokolov 2015-11-11 20:17:37 +03:00
parent 00b4b11553
commit 054be321e1
1 changed files with 6 additions and 0 deletions

6
Rakefile Normal file
View File

@ -0,0 +1,6 @@
task :spec do
system "bash run_tests.sh"
exit $?.exitstatus
end
task :default => 'spec'