schedule tests for i386 by default

Summary:
D500 adds 32-bit test definitions to the test templates, so we
can schedule that arch again.

Test Plan: Goes along with D500, same test plan.

Reviewers: jskladan, garretraziel

Reviewed By: garretraziel

Subscribers: tflink

Differential Revision: https://phab.qadevel.cloud.fedoraproject.org/D501
This commit is contained in:
Adam Williamson 2015-08-15 21:10:50 -04:00
parent f681dce47e
commit 269dbbe004
1 changed files with 1 additions and 2 deletions

View File

@ -19,8 +19,7 @@ from report_job_results import report_results
PERSISTENT = "/var/tmp/openqa_watcher.json"
ISO_PATH = "/var/lib/openqa/factory/iso/"
# We're not really setup to test 32-bit yet. Add 'i386' when we are.
ARCHES = ['x86_64']
ARCHES = ['x86_64', 'i386']
class TriggerException(Exception):