Skip to content

Commit 39e0266

Browse files
committed
Fix autorun exit status.
1 parent 2c9cd00 commit 39e0266

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

.index

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ paths:
4444
- lib
4545
name: rubytest
4646
title: Rubytest
47-
version: 0.8.0
47+
version: 0.8.1
4848
summary: Ruby Universal Test Harness
4949
description: Rubytest is a universal test harness for Ruby. It can handle any compliant
5050
test framework, even running tests from multiple frameworks in a single pass. This
5151
is the core component of the system, and is the only part strictly necessary to
5252
run tests.
5353
created: '2011-07-23'
54-
date: '2014-07-18'
54+
date: '2014-07-19'

Indexfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name:
33
rubytest
44

55
version:
6-
0.8.0
6+
0.8.1
77

88
title:
99
Rubytest

lib/rubytest/autorun.rb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
require 'rubytest'
22

33
at_exit {
4-
success = Test.run!(ENV['profile'] || ENV['p'])
5-
exit -1 unless success
4+
Test.run!(ENV['profile'] || ENV['p'])
5+
#success = Test.run!(ENV['profile'] || ENV['p'])
6+
#exit -1 unless success
67
}
78

0 commit comments

Comments
 (0)