Sha256: b3c1aacaeceb4232973df9c07187b93a0e9fe9db46944f643218d53152e7318a

Contents?: true

Size: 349 Bytes

Versions: 28

Compression:

Stored size: 349 Bytes

Contents

# frozen_string_literal: true

module Overcommit::Hook::PrePush
  # Runs `nose` test suite before push
  #
  # @see https://nose.readthedocs.io/en/latest/
  class PythonNose < Base
    def run
      result = execute(command)
      return :pass if result.success?

      output = result.stdout + result.stderr
      [:fail, output]
    end
  end
end

Version data entries

28 entries across 28 versions & 2 rubygems

Version Path
overcommit-0.64.1 lib/overcommit/hook/pre_push/python_nose.rb
overcommit-0.64.0 lib/overcommit/hook/pre_push/python_nose.rb
overcommit-0.63.0 lib/overcommit/hook/pre_push/python_nose.rb
overcommit-0.62.0 lib/overcommit/hook/pre_push/python_nose.rb
overcommit-0.61.0 lib/overcommit/hook/pre_push/python_nose.rb
overcommit-0.60.0 lib/overcommit/hook/pre_push/python_nose.rb
overcommit-0.59.1 lib/overcommit/hook/pre_push/python_nose.rb
overcommit-0.59.0 lib/overcommit/hook/pre_push/python_nose.rb
overcommit-jeygeethanmedia-0.58.0 lib/overcommit/hook/pre_push/python_nose.rb
overcommit-0.58.0 lib/overcommit/hook/pre_push/python_nose.rb
overcommit-0.57.0 lib/overcommit/hook/pre_push/python_nose.rb
overcommit-0.56.0 lib/overcommit/hook/pre_push/python_nose.rb
overcommit-0.55.0 lib/overcommit/hook/pre_push/python_nose.rb
overcommit-0.54.1 lib/overcommit/hook/pre_push/python_nose.rb
overcommit-0.54.0 lib/overcommit/hook/pre_push/python_nose.rb
overcommit-jeygeethanmedia-0.53.1.2 lib/overcommit/hook/pre_push/python_nose.rb
overcommit-jeygeethanmedia-0.53.1.1 lib/overcommit/hook/pre_push/python_nose.rb
overcommit-jeygeethanmedia-0.53.1 lib/overcommit/hook/pre_push/python_nose.rb
overcommit-0.53.0 lib/overcommit/hook/pre_push/python_nose.rb
overcommit-0.52.1 lib/overcommit/hook/pre_push/python_nose.rb