lower flavor requirements for test_cpu_pinning

Lowering vcpu and ram requirements to lowest possible
to maximise tempest concurrent workers running that test.
It's especially important on small/mid-sized testing hosts or VMs.

Change-Id: Ia5f119a702f2950e7299feb8fc1f494361af52d1
Closes-Bug: #1570951
This commit is contained in:
Waldemar Znoinski 2016-04-15 17:16:38 +01:00
parent 535bb01cba
commit a87391af68
1 changed files with 2 additions and 2 deletions

View File

@ -101,8 +101,8 @@ class CPUPolicyTest(base.BaseV2ComputeAdminTest):
super(CPUPolicyTest, cls).resource_setup()
cls.flavor_name_prefix = 'test_hw_'
cls.ram = 512
cls.vcpus = 4
cls.ram = 64
cls.vcpus = 2
cls.disk = 0
cls.ephemeral = 0
cls.swap = 0