From de64bbf19808bc4cef01107e3b914475fae66c28 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Thu, 5 May 2016 14:47:02 -0700 Subject: [PATCH] openqa/worker: tap workers have default classes too we don't want these workers to *only* run tap tests, so put the default classes into their WORKER_CLASS too. --- roles/openqa/worker/templates/workers.ini.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/openqa/worker/templates/workers.ini.j2 b/roles/openqa/worker/templates/workers.ini.j2 index 06a3908412..33982da7ee 100644 --- a/roles/openqa/worker/templates/workers.ini.j2 +++ b/roles/openqa/worker/templates/workers.ini.j2 @@ -1,5 +1,5 @@ [global] HOST = http://{{ openqa_hostname|default('localhost') }} {% if openqa_tap is defined and openqa_tap %} -WORKER_CLASS = tap +WORKER_CLASS = tap,qemu_x86_64,qemu_i686,qemu_i586 {% endif %}