We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91623d1 commit 5aa8adaCopy full SHA for 5aa8ada
Rakefile
@@ -11,6 +11,16 @@ task default: :spec
11
namespace :spec do
12
include ActiveRecord::Tasks
13
14
+ desc 'Run isolated non-Redshift reliant code examples'
15
+ RSpec::Core::RakeTask.new(:isolated) do |t|
16
+ t.pattern = 'spec/lib/**/*_spec.rb'
17
+ end
18
+
19
+ desc 'Run Redshift reliant code examples'
20
+ RSpec::Core::RakeTask.new(:redshift) do |t|
21
+ t.pattern = 'spec/redshift/**/*_spec.rb'
22
23
24
task :environment do
25
ARTest.connect
26
# DatabaseTasks.current_config = ARTest.config
0 commit comments