.simplecov
author Mahlon E. Smith <mahlon@martini.nu>
Thu, 09 Jul 2020 15:05:21 -0700
changeset 17 5db18679edcf
parent 0 aef8f9f4a788
permissions -rw-r--r--
Multiple changes. - Migrate to gem.deps.rb from .gems - Bump dependency versions - Clear environment before connecting to remote server - Allow option for environment modifications - Place commands in args, rather than via the IO pipe. (won't spawn remote shell)

# Simplecov config

SimpleCov.start do
	add_filter 'spec'
	add_filter 'integration'
	add_group "Needing tests" do |file|
		file.covered_percent < 90
	end
end