File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -26,4 +26,4 @@ matrix:
26
26
- rvm : jruby-head
27
27
- rvm : 1.9.3
28
28
29
- script : " bundle exec rake compile && bundle exec rspec --color --backtrace --tag ~unfinished --seed 1 --format documentation ./spec "
29
+ script : bundle exec rake ci
Original file line number Diff line number Diff line change @@ -151,6 +151,15 @@ begin
151
151
152
152
RSpec ::Core ::RakeTask . new ( :spec )
153
153
154
+ RSpec ::Core ::RakeTask . new ( :travis ) do |t |
155
+ t . rspec_opts = '--color ' \
156
+ '--backtrace ' \
157
+ '--tag ~unfinished ' \
158
+ '--seed 1 ' \
159
+ '--format documentation'
160
+ end
161
+
162
+ task :ci => [ :clean , :compile , :travis ]
154
163
task :default => [ :clean , :compile , :spec ]
155
164
rescue LoadError
156
165
puts 'Error loading Rspec rake tasks, probably building the gem...'
You can’t perform that action at this time.
0 commit comments