
After removing the logic that stores the duration that has been waited for a runner in the runner, this now also removes the column from the database as it is not used anymore.
11 lines
306 B
Ruby
11 lines
306 B
Ruby
# frozen_string_literal: true
|
|
|
|
# This factory does not request the runner management as the id is already provided.
|
|
FactoryBot.define do
|
|
factory :runner do
|
|
runner_id { SecureRandom.uuid }
|
|
association :execution_environment, factory: :ruby
|
|
association :user, factory: :external_user
|
|
end
|
|
end
|