fix benches interfering with testing
This commit is contained in:
parent
dc560aaa5e
commit
19dd7b96d6
@ -5,8 +5,6 @@ require_relative '../../soml/helper'
|
||||
module BenchTests
|
||||
|
||||
include RuntimeTests
|
||||
|
||||
ENV["REMOTE_PI"] = "pi" unless ENV.has_key?("REMOTE_PI")
|
||||
|
||||
def setup
|
||||
@stdout = ""
|
||||
@ -28,4 +26,8 @@ HERE
|
||||
def check_remote val
|
||||
check_r val , true
|
||||
end
|
||||
|
||||
def connected
|
||||
make_box
|
||||
end
|
||||
end
|
||||
|
@ -57,6 +57,10 @@ module RuntimeTests
|
||||
puts "remote " + ENV["REMOTE_PI"]
|
||||
user , rest = ENV["REMOTE_PI"].split("@")
|
||||
machine , port = rest.to_s.split(":")
|
||||
make_box machine , port , user
|
||||
end
|
||||
|
||||
def make_box machine = nil , port = nil , user = nil
|
||||
@@conn = Rye::Box.new(machine || "localhost" , :port => (port || 2222) , :user => (user || "pi"))
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user