# 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