Skip to content

Commit b1e0b29

Browse files
committed
WIP
1 parent c40029a commit b1e0b29

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

sentry-sidekiq/Rakefile

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
11
# frozen_string_literal: true
22

3-
require "rake/clean"
4-
require "bundler/gem_helper"
5-
6-
Bundler::GemHelper.install_tasks(name: "sentry-sidekiq")
7-
3+
require "bundler/gem_tasks"
84
require_relative "../lib/sentry/test/rake_tasks"
95

10-
ISOLATED_SPECS = "spec/isolated/**/*_spec.rb"
11-
126
Sentry::Test::RakeTasks.define_spec_tasks(
13-
isolated_specs_pattern: ISOLATED_SPECS,
14-
spec_exclude_pattern: ISOLATED_SPECS
7+
spec_pattern: "spec/sentry/**/*_spec.rb",
8+
spec_rspec_opts: "--order rand --format progress",
9+
isolated_specs_pattern: "spec/isolated/**/*_spec.rb",
10+
isolated_rspec_opts: "--format progress"
1511
)
1612

1713
task default: [:spec, :"spec:isolated"]

0 commit comments

Comments
 (0)