Sha256: 89930dee4ba379054169e071098d1be60aeeff55684712f2b1ef3ff110cf0f41
Contents?: true
Size: 1.31 KB
Versions: 10
Compression:
Stored size: 1.31 KB
Contents
# frozen_string_literal: true require "bundler/gem_tasks" import "test/benchmarks/benchmark.rake" require "rubocop/rake_task" RuboCop::RakeTask.new task default: %i[test] task "test:all": %i[rubocop test forked_tests benchmarks:memory benchmarks] task :test require "rake/testtask" Rake::TestTask.new(:test) do |test| test.libs << "lib" << "test" # exclude benchmark from the tests as the way it functions resets code coverage during executions # test.pattern = 'test/unit/*_test.rb' # using test files opposed to pattern as it outputs which files are run test.test_files = FileList["test/integration/**/*_test.rb", "test/coverband/**/*_test.rb"] test.verbose = true end Rake::TestTask.new(:forked_tests) do |test| if RUBY_PLATFORM == "java" puts "forked tests not supported on JRuby" else test.libs << "lib" << "test" test.test_files = FileList["test/forked/**/*_test.rb"] test.verbose = true end end desc "load irb with this gem" task :console do puts "running console" exec "bundle console" end # This is really just for testing and development because without configuration # Coverband can't do much desc "start webserver" task :server do exec "rackup -I lib" end desc "publish gem with 2 factor auth, reminder how" task :publish_gem do exec "gem push pkg/coverband-4.2.3.XXX.gem" end
Version data entries
10 entries across 10 versions & 1 rubygems