Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/migration.rb')
-rw-r--r--spec/support/migration.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/support/migration.rb b/spec/support/migration.rb
index 4d4a293e9ff..b1e75d9c9e2 100644
--- a/spec/support/migration.rb
+++ b/spec/support/migration.rb
@@ -20,6 +20,14 @@ RSpec.configure do |config|
Gitlab::CurrentSettings.clear_in_memory_application_settings!
end
+ config.prepend_before(:all, :migration) do
+ TestProf::BeforeAll.adapter = ::TestProfBeforeAllAdapter.no_transaction_adapter
+ end
+
+ config.append_after(:all, :migration) do
+ TestProf::BeforeAll.adapter = ::TestProfBeforeAllAdapter.default_adapter
+ end
+
config.append_after(:context, :migration) do
recreate_databases_and_seed_if_needed || ensure_schema_and_empty_tables
end