class Overcommit::Hook::PrePush::PythonNose
Runs ‘nose` test suite before push
Public Instance Methods
Source
# File lib/overcommit/hook/pre_push/python_nose.rb, line 8 def run result = execute(command) return :pass if result.success? output = result.stdout + result.stderr [:fail, output] end