Skip to content
Snippets Groups Projects

Add rake task for copying 'main' database to 'ci' database

1 unresolved thread
1 file
+ 3
2
Compare changes
  • Side-by-side
  • Inline
@@ -25,8 +25,6 @@
database_model.connection
end
let!(:milestone) { create(:milestone) }
let!(:ci_pipeline) { create(:ci_pipeline) }
let(:backup_location_postfix) { SecureRandom.alphanumeric(10) }
before do
@@ -85,6 +83,9 @@
end
context 'when the checks pass' do
let!(:milestone) { create(:milestone) }
let!(:ci_pipeline) { create(:ci_pipeline) }
it 'copies main database to ci database' do
process
Loading