Skip to content
This repository has been archived by the owner on Apr 7, 2022. It is now read-only.

Commit

Permalink
Fixed vsphere skiping issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Ganesh Hubale committed Jul 5, 2019
1 parent 22a9a15 commit de087ee
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
5 changes: 3 additions & 2 deletions cfme/tests/infrastructure/test_child_tenant.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@
pytestmark = [
test_requirements.quota,
pytest.mark.meta(server_roles="+automate"),
pytest.mark.usefixtures('setup_provider', 'uses_infra_providers'),
pytest.mark.usefixtures('setup_provider'),
pytest.mark.long_running,
pytest.mark.provider([VMwareProvider, RHEVMProvider], scope="module", selector=ONE_PER_TYPE)
pytest.mark.provider([VMwareProvider, RHEVMProvider], scope="module",
required_fields=[["provisioning", "template"]], selector=ONE_PER_TYPE)
]


Expand Down
5 changes: 3 additions & 2 deletions cfme/tests/infrastructure/test_project_quota.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@
pytestmark = [
test_requirements.quota,
pytest.mark.meta(server_roles="+automate"),
pytest.mark.usefixtures('setup_provider', 'uses_infra_providers'),
pytest.mark.usefixtures('setup_provider'),
pytest.mark.long_running,
pytest.mark.provider([VMwareProvider, RHEVMProvider], scope="module", selector=ONE_PER_TYPE)
pytest.mark.provider([VMwareProvider, RHEVMProvider], scope="module",
required_fields=[["provisioning", "template"]], selector=ONE_PER_TYPE)
]


Expand Down
3 changes: 2 additions & 1 deletion cfme/tests/infrastructure/test_tenant_quota.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
pytest.mark.meta(server_roles="+automate"),
test_requirements.vm_migrate,
pytest.mark.usefixtures('setup_provider'),
pytest.mark.provider([VMwareProvider, RHEVMProvider], scope="module", selector=ONE_PER_TYPE)
pytest.mark.provider([VMwareProvider, RHEVMProvider], scope="module",
required_fields=[["provisioning", "template"]], selector=ONE_PER_TYPE)
]


Expand Down

0 comments on commit de087ee

Please sign in to comment.