├── .gitattributes ├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── .ropeproject └── config.py ├── .travis.yml ├── COPYING ├── README.md ├── artifactor ├── __init__.py ├── __main__.py ├── example_tests │ └── artifactor_simple_example.py └── plugins │ ├── __init__.py │ ├── filedump.py │ ├── logger.py │ ├── ostriz.py │ ├── post_result.py │ ├── reporter.py │ ├── test.py │ └── video.py ├── cfme ├── __init__.py ├── ansible │ ├── __init__.py │ ├── credentials.py │ ├── playbooks.py │ └── repositories.py ├── ansible_tower │ ├── __init__.py │ ├── explorer.py │ └── jobs.py ├── automate │ ├── __init__.py │ ├── buttons.py │ ├── dialog_import_export.py │ ├── dialogs │ │ ├── __init__.py │ │ ├── dialog_box.py │ │ ├── dialog_element.py │ │ ├── dialog_tab.py │ │ └── service_dialogs.py │ ├── explorer │ │ ├── __init__.py │ │ ├── common.py │ │ ├── domain.py │ │ ├── instance.py │ │ ├── klass.py │ │ ├── method.py │ │ └── namespace.py │ ├── import_export.py │ ├── provisioning_dialogs.py │ ├── requests.py │ └── simulation.py ├── base │ ├── __init__.py │ ├── credential.py │ ├── rest.py │ ├── ssui.py │ └── ui.py ├── cloud │ ├── __init__.py │ ├── availability_zone.py │ ├── flavor.py │ ├── host_aggregates.py │ ├── instance │ │ ├── __init__.py │ │ ├── azure.py │ │ ├── ec2.py │ │ ├── gce.py │ │ ├── image.py │ │ └── openstack.py │ ├── keypairs.py │ ├── provider │ │ ├── __init__.py │ │ ├── azure.py │ │ ├── ec2.py │ │ ├── gce.py │ │ ├── openstack.py │ │ └── vcloud.py │ ├── security_groups.py │ ├── stack.py │ └── tenant.py ├── common │ ├── __init__.py │ ├── candu_views.py │ ├── datastore_views.py │ ├── host_views.py │ ├── physical_server_views.py │ ├── physical_switch_views.py │ ├── provider.py │ ├── provider_views.py │ ├── topology.py │ ├── vm.py │ ├── vm_console.py │ └── vm_views.py ├── configure │ ├── __init__.py │ ├── about.py │ ├── access_control │ │ └── __init__.py │ ├── configuration │ │ ├── __init__.py │ │ ├── analysis_profile.py │ │ ├── diagnostics_settings.py │ │ ├── region_settings.py │ │ ├── server_settings.py │ │ └── system_schedules.py │ ├── documentation.py │ ├── settings.py │ └── tasks.py ├── containers │ ├── __init__.py │ ├── build.py │ ├── container.py │ ├── image.py │ ├── image_registry.py │ ├── node.py │ ├── overview.py │ ├── pod.py │ ├── project.py │ ├── provider │ │ ├── __init__.py │ │ └── openshift.py │ ├── replicator.py │ ├── route.py │ ├── service.py │ ├── template.py │ ├── topology.py │ └── volume.py ├── control │ ├── __init__.py │ ├── explorer │ │ ├── __init__.py │ │ ├── actions.py │ │ ├── alert_profiles.py │ │ ├── alerts.py │ │ ├── conditions.py │ │ ├── policies.py │ │ └── policy_profiles.py │ ├── import_export.py │ ├── log.py │ └── simulation.py ├── dashboard.py ├── exceptions.py ├── fixtures │ ├── __init__.py │ ├── ansible_fixtures.py │ ├── ansible_tower.py │ ├── appliance.py │ ├── appliance_update.py │ ├── artifactor_plugin.py │ ├── authentication.py │ ├── automate.py │ ├── base.py │ ├── blockers.py │ ├── browser.py │ ├── bzs.py │ ├── candu.py │ ├── cfme_data.py │ ├── cli.py │ ├── datafile.py │ ├── depot.py │ ├── dev_branch.py │ ├── disable_forgery_protection.py │ ├── embedded_ansible.py │ ├── events.py │ ├── fixtureconf.py │ ├── generic_object.py │ ├── has_persistent_volume.py │ ├── log.py │ ├── maximized.py │ ├── model_collections.py │ ├── multi_region.py │ ├── multi_tenancy.py │ ├── nelson.py │ ├── networks.py │ ├── nuage.py │ ├── page_screenshots.py │ ├── parallelizer │ │ ├── __init__.py │ │ ├── hooks.py │ │ ├── parallelizer_tester.py │ │ └── remote.py │ ├── perf.py │ ├── physical_switch.py │ ├── portset.py │ ├── prov_filter.py │ ├── provider.py │ ├── pxe.py │ ├── pytest_store.py │ ├── qa_contact.py │ ├── randomness.py │ ├── rbac.py │ ├── rdb.py │ ├── sauce.py │ ├── screenshots.py │ ├── service_fixtures.py │ ├── single_appliance_sprout.py │ ├── skip_not_implemented.py │ ├── smtp.py │ ├── soft_assert.py │ ├── ssh_client.py │ ├── tag.py │ ├── tccheck.py │ ├── templateloader.py │ ├── templates.py │ ├── terminalreporter.py │ ├── ui_coverage.py │ ├── update_tests.py │ ├── utility_vm.py │ ├── v2v_fixtures.py │ ├── version_info.py │ ├── video.py │ ├── virtual_machine.py │ ├── vm.py │ ├── vm_console.py │ ├── vporizer.py │ └── xunit_tools.py ├── generic_objects │ ├── __init__.py │ ├── definition │ │ ├── __init__.py │ │ ├── associations.py │ │ ├── button_groups.py │ │ ├── definition_views.py │ │ ├── rest.py │ │ └── ui.py │ └── instance │ │ ├── __init__.py │ │ ├── rest.py │ │ └── ui.py ├── infrastructure │ ├── __init__.py │ ├── cluster.py │ ├── config_management │ │ ├── __init__.py │ │ ├── ansible_tower.py │ │ ├── config_profiles.py │ │ ├── config_systems │ │ │ ├── __init__.py │ │ │ ├── ansible_tower.py │ │ │ └── satellite.py │ │ └── satellite.py │ ├── datastore.py │ ├── deployment_roles.py │ ├── host.py │ ├── networking.py │ ├── openstack_node.py │ ├── provider │ │ ├── __init__.py │ │ ├── kubevirt.py │ │ ├── openstack_infra.py │ │ ├── rhevm.py │ │ ├── scvmm.py │ │ └── virtualcenter.py │ ├── pxe.py │ ├── resource_pool.py │ └── virtual_machines.py ├── intelligence │ ├── __init__.py │ ├── chargeback │ │ ├── __init__.py │ │ ├── assignments.py │ │ └── rates.py │ ├── optimization.py │ ├── reports │ │ ├── __init__.py │ │ ├── dashboards.py │ │ ├── menus.py │ │ ├── reports.py │ │ ├── saved.py │ │ ├── schedules.py │ │ └── widgets │ │ │ ├── __init__.py │ │ │ ├── chart_widgets.py │ │ │ ├── menu_widgets.py │ │ │ ├── report_widgets.py │ │ │ └── rss_widgets.py │ ├── rss.py │ └── timelines.py ├── js.py ├── markers │ ├── __init__.py │ ├── composite.py │ ├── crud.py │ ├── destructive.py │ ├── env.py │ ├── env_markers │ │ ├── __init__.py │ │ └── provider.py │ ├── fixtureconf.py │ ├── isolation.py │ ├── manual.py │ ├── marker_filters.py │ ├── meta.py │ ├── perf.py │ ├── polarion.py │ ├── regression.py │ ├── requires.py │ ├── rhel_tests.py │ ├── sauce.py │ ├── serial.py │ ├── skipper.py │ ├── smoke.py │ ├── stream_excluder.py │ ├── uncollect.py │ └── uses.py ├── metaplugins │ ├── __init__.py │ ├── blockers.py │ └── server_roles.py ├── modeling │ ├── __init__.py │ ├── base.py │ └── tests │ │ ├── __init__.py │ │ └── test_collections.py ├── networks │ ├── __init__.py │ ├── balancer.py │ ├── cloud_network.py │ ├── floating_ips.py │ ├── network_port.py │ ├── network_router.py │ ├── provider │ │ ├── __init__.py │ │ └── nuage.py │ ├── security_group.py │ ├── subnet.py │ ├── topology.py │ └── views.py ├── optimize │ ├── __init__.py │ ├── bottlenecks.py │ └── utilization.py ├── physical │ ├── __init__.py │ ├── physical_chassis.py │ ├── physical_rack.py │ ├── physical_server.py │ ├── physical_storage.py │ ├── physical_switch.py │ └── provider │ │ ├── __init__.py │ │ ├── lenovo.py │ │ └── redfish.py ├── provisioning.py ├── rest │ ├── __init__.py │ ├── abc.py │ └── gen_data.py ├── roles.py ├── scripting │ ├── __init__.py │ ├── appliance.py │ ├── bz.py │ ├── conf.py │ ├── disable_bytecode.py │ ├── ipyshell.py │ ├── link_config.py │ ├── miq.py │ ├── polarion.py │ ├── quickstart │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── proc.py │ │ └── system.py │ ├── release.py │ ├── requirement.py │ ├── runtest.py │ ├── setup_env.py │ ├── sprout.py │ └── tests │ │ ├── __init__.py │ │ └── test_quickstart.py ├── services │ ├── __init__.py │ ├── catalogs │ │ ├── __init__.py │ │ ├── catalog.py │ │ ├── catalog_items │ │ │ ├── __init__.py │ │ │ ├── ansible_catalog_items.py │ │ │ └── catalog_bundles.py │ │ └── orchestration_template.py │ ├── dashboard │ │ ├── __init__.py │ │ └── ssui.py │ ├── myservice │ │ ├── __init__.py │ │ ├── rest.py │ │ ├── ssui.py │ │ └── ui.py │ ├── requests.py │ ├── service_catalogs │ │ ├── __init__.py │ │ ├── ssui.py │ │ └── ui.py │ └── workloads.py ├── storage │ ├── __init__.py │ ├── manager.py │ ├── object_store_container.py │ ├── object_store_object.py │ ├── volume.py │ ├── volume_backup.py │ ├── volume_snapshot.py │ └── volume_type.py ├── test_framework │ ├── __init__.py │ ├── appliance.py │ ├── appliance_hooks.py │ ├── appliance_log_collector.py │ ├── appliance_police.py │ ├── browser_isolation.py │ ├── config.py │ ├── pytest_plugin.py │ └── sprout │ │ ├── __init__.py │ │ ├── client.py │ │ └── plugin.py ├── test_requirements.py ├── tests │ ├── .polarion_tests │ ├── __init__.py │ ├── ansible │ │ ├── test_embedded_ansible_actions.py │ │ ├── test_embedded_ansible_automate.py │ │ ├── test_embedded_ansible_basic.py │ │ ├── test_embedded_ansible_crud.py │ │ ├── test_embedded_ansible_manual.py │ │ ├── test_embedded_ansible_rest.py │ │ ├── test_embedded_ansible_services.py │ │ └── test_embedded_ansible_tags.py │ ├── automate │ │ ├── __init__.py │ │ ├── custom_button │ │ │ ├── __init__.py │ │ │ ├── test_buttons.py │ │ │ ├── test_catalog_custom_button.py │ │ │ ├── test_cloud_objects.py │ │ │ ├── test_container_objects.py │ │ │ ├── test_custom_menu.py │ │ │ ├── test_generic_objects.py │ │ │ ├── test_import_export.py │ │ │ ├── test_infra_objects.py │ │ │ ├── test_infra_objects_ansible.py │ │ │ ├── test_rest_custom_button.py │ │ │ ├── test_service_objects.py │ │ │ └── test_service_vm_custom_button.py │ │ ├── generic_objects │ │ │ ├── buttons │ │ │ │ └── test_generic_class_custom_button.py │ │ │ ├── test_definitions.py │ │ │ └── test_instances.py │ │ ├── test_ansible_tower_automate.py │ │ ├── test_automate_manual.py │ │ ├── test_class.py │ │ ├── test_common_methods.py │ │ ├── test_customization_paginator.py │ │ ├── test_domain.py │ │ ├── test_domain_priority.py │ │ ├── test_file_import.py │ │ ├── test_git_import.py │ │ ├── test_instance.py │ │ ├── test_method.py │ │ ├── test_namespace.py │ │ ├── test_provisioning_dialogs.py │ │ ├── test_rest.py │ │ ├── test_service_automate.py │ │ ├── test_service_dialog.py │ │ ├── test_simulation.py │ │ ├── test_smoke.py │ │ └── test_vmware_methods.py │ ├── candu │ │ ├── __init__.py │ │ ├── test_azone_graph.py │ │ ├── test_candu_manual.py │ │ ├── test_cluster_graph.py │ │ ├── test_datastore_graph.py │ │ ├── test_gap_collection.py │ │ ├── test_graph_groupbytag.py │ │ ├── test_host_graph.py │ │ ├── test_nor_rightsize.py │ │ ├── test_utilization.py │ │ ├── test_utilization_metrics.py │ │ └── test_vm_graph.py │ ├── cli │ │ ├── __init__.py │ │ ├── test_appliance_cli.py │ │ ├── test_appliance_console.py │ │ ├── test_appliance_console_db_restore.py │ │ ├── test_appliance_log_rotate.py │ │ ├── test_appliance_update.py │ │ ├── test_appliance_update_manual.py │ │ ├── test_evmserverd.py │ │ └── test_rake_evm_automate-53.py │ ├── cloud │ │ ├── __init__.py │ │ ├── test_azure_manual.py │ │ ├── test_cloud_events.py │ │ ├── test_cloud_timelines.py │ │ ├── test_delete_cloud_object.py │ │ ├── test_instance_power_control.py │ │ ├── test_instance_reconfigure.py │ │ ├── test_keypairs.py │ │ ├── test_providers.py │ │ ├── test_quota.py │ │ ├── test_quota_tagging.py │ │ ├── test_snapshot.py │ │ ├── test_stack.py │ │ ├── test_tag_mapping.py │ │ ├── test_targeted_refresh.py │ │ ├── test_tenant.py │ │ └── test_tenant_quota.py │ ├── cloud_infra_common │ │ ├── __init__.py │ │ ├── test_cloud_init_provisioning.py │ │ ├── test_cockpit_server.py │ │ ├── test_custom_attributes_rest.py │ │ ├── test_discovery_and_support.py │ │ ├── test_events.py │ │ ├── test_genealogy.py │ │ ├── test_html5_vm_console.py │ │ ├── test_html5_vm_console_ssui.py │ │ ├── test_policy_simulation.py │ │ ├── test_power_control_manual.py │ │ ├── test_power_control_rest.py │ │ ├── test_provisioning.py │ │ ├── test_provisioning_manual.py │ │ ├── test_quota_manual.py │ │ ├── test_quota_with_multiple_providers.py │ │ ├── test_relationships.py │ │ ├── test_rest_providers.py │ │ ├── test_retirement.py │ │ ├── test_snapshots.py │ │ ├── test_snapshots_rest.py │ │ ├── test_tag_objects.py │ │ ├── test_tag_visibility.py │ │ ├── test_vm_instance_analysis.py │ │ ├── test_vm_instance_analysis_manual.py │ │ └── test_vm_ownership.py │ ├── configure │ │ ├── __init__.py │ │ ├── test_about.py │ │ ├── test_access_control.py │ │ ├── test_analysis_profiles.py │ │ ├── test_config_diagnostics.py │ │ ├── test_config_manual.py │ │ ├── test_database_ui.py │ │ ├── test_db_backup_schedule.py │ │ ├── test_default_filters.py │ │ ├── test_default_views_cloud.py │ │ ├── test_default_views_infra.py │ │ ├── test_display_settings.py │ │ ├── test_docs.py │ │ ├── test_email.py │ │ ├── test_landing_page.py │ │ ├── test_log_depot_operation.py │ │ ├── test_log_depot_operation_manual.py │ │ ├── test_logs.py │ │ ├── test_ntp_server.py │ │ ├── test_paginator.py │ │ ├── test_proxy.py │ │ ├── test_rbac_landing_page.py │ │ ├── test_region.py │ │ ├── test_register_appliance.py │ │ ├── test_remote_server_tabs.py │ │ ├── test_rest_access_control.py │ │ ├── test_rest_config.py │ │ ├── test_schedule_operations.py │ │ ├── test_server_name.py │ │ ├── test_server_roles.py │ │ ├── test_session_timeout.py │ │ ├── test_tag.py │ │ ├── test_tag_category.py │ │ ├── test_timeprofile.py │ │ ├── test_version.py │ │ ├── test_visual_cloud.py │ │ ├── test_visual_infra.py │ │ ├── test_vmware_console_settings.py │ │ ├── test_workers.py │ │ └── test_zones.py │ ├── containers │ │ ├── __init__.py │ │ ├── test_ad_hoc_metrics.py │ │ ├── test_alerts.py │ │ ├── test_basic_metrics.py │ │ ├── test_blacklisted_container_events.py │ │ ├── test_breadcrumbs.py │ │ ├── test_chargeback.py │ │ ├── test_cockpit.py │ │ ├── test_configurable_menus.py │ │ ├── test_container_provider_crud.py │ │ ├── test_container_provider_refresh.py │ │ ├── test_containers_smartstate_analysis.py │ │ ├── test_containers_smartstate_analysis_multiple_images.py │ │ ├── test_containers_summary.py │ │ ├── test_labels.py │ │ ├── test_logging.py │ │ ├── test_manageiq_ansible_custom_attributes.py │ │ ├── test_node.py │ │ ├── test_overview_data_integrity.py │ │ ├── test_pause_resume_workers.py │ │ ├── test_project_quota_historical_data.py │ │ ├── test_projects_dashboard.py │ │ ├── test_properties.py │ │ ├── test_provider_configuration_menu.py │ │ ├── test_provider_openscap_policy_attached.py │ │ ├── test_relationships.py │ │ ├── test_reload_button_provider.py │ │ ├── test_reports.py │ │ ├── test_search_bar.py │ │ ├── test_ssa_set_cve_image_inspector_per_provider.py │ │ ├── test_ssl_providers.py │ │ ├── test_start_page.py │ │ ├── test_static_custom_attributes.py │ │ ├── test_table_views.py │ │ ├── test_tables_fields.py │ │ ├── test_tables_sort.py │ │ ├── test_tags.py │ │ └── test_topology.py │ ├── control │ │ ├── __init__.py │ │ ├── test_actions.py │ │ ├── test_alerts.py │ │ ├── test_basic.py │ │ ├── test_bugs.py │ │ ├── test_compliance.py │ │ ├── test_control_simulation.py │ │ ├── test_default_alerts.py │ │ ├── test_export_policies.py │ │ ├── test_import_policies.py │ │ ├── test_rest_control.py │ │ └── test_smoke_control.py │ ├── distributed │ │ ├── test_appliance_file_permissions.py │ │ ├── test_appliance_manual.py │ │ └── test_appliance_replication.py │ ├── infrastructure │ │ ├── __init__.py │ │ ├── test_advanced_search_host.py │ │ ├── test_advanced_search_providers.py │ │ ├── test_advanced_search_vms.py │ │ ├── test_child_tenant.py │ │ ├── test_cluster_analysis.py │ │ ├── test_config_management.py │ │ ├── test_config_management_rest.py │ │ ├── test_customization_template.py │ │ ├── test_datastore_analysis.py │ │ ├── test_delete_infra_object.py │ │ ├── test_host.py │ │ ├── test_host_analysis.py │ │ ├── test_host_drift_analysis.py │ │ ├── test_host_manual.py │ │ ├── test_host_provisioning.py │ │ ├── test_individual_host_creds.py │ │ ├── test_infra_tag_filters_combination.py │ │ ├── test_iso_datastore.py │ │ ├── test_iso_provisioning.py │ │ ├── test_kubevirt.py │ │ ├── test_project_quota.py │ │ ├── test_provider_discovery.py │ │ ├── test_providers.py │ │ ├── test_provisioning_dialog.py │ │ ├── test_provisioning_rest.py │ │ ├── test_publish_vm_to_template.py │ │ ├── test_pxe.py │ │ ├── test_pxe_provisioning.py │ │ ├── test_quota.py │ │ ├── test_quota_tagging.py │ │ ├── test_rest_automation_request.py │ │ ├── test_rest_templates.py │ │ ├── test_scvmm_specific.py │ │ ├── test_set_default_filter.py │ │ ├── test_snapshot.py │ │ ├── test_ssa_vddk.py │ │ ├── test_system_image_type.py │ │ ├── test_tenant_quota.py │ │ ├── test_timelines.py │ │ ├── test_vm_clone.py │ │ ├── test_vm_delete.py │ │ ├── test_vm_engine_relationship.py │ │ ├── test_vm_migrate.py │ │ ├── test_vm_ownership.py │ │ ├── test_vm_power_control.py │ │ ├── test_vm_reconfigure.py │ │ ├── test_vm_rest.py │ │ ├── test_vm_retirement_rest.py │ │ ├── test_vmrc_console.py │ │ ├── test_vmware_provider.py │ │ └── test_webmks_console.py │ ├── integration │ │ ├── __init__.py │ │ ├── test_auth_manual.py │ │ ├── test_auth_scripts.py │ │ ├── test_aws_iam_auth_and_roles.py │ │ ├── test_cfme_auth.py │ │ ├── test_db_auth.py │ │ ├── test_external_auth.py │ │ ├── test_ldap_auth.py │ │ └── test_ldap_auth_and_roles.py │ ├── intelligence │ │ ├── __init__.py │ │ ├── chargeback │ │ │ ├── test_chargeback_long_term_rates.py │ │ │ └── test_resource_allocation.py │ │ ├── reports │ │ │ ├── __init__.py │ │ │ ├── test_canned_corresponds.py │ │ │ ├── test_crud.py │ │ │ ├── test_generate_report.py │ │ │ ├── test_import_export_reports_widgets.py │ │ │ ├── test_menus.py │ │ │ ├── test_metering_report.py │ │ │ ├── test_report_chargeback.py │ │ │ ├── test_report_corresponds.py │ │ │ ├── test_reports.py │ │ │ ├── test_reports_schedules.py │ │ │ ├── test_validate_chargeback_report.py │ │ │ ├── test_validate_chargeback_report_manual.py │ │ │ ├── test_views.py │ │ │ └── test_widgets.py │ │ ├── test_chargeback.py │ │ ├── test_chargeback_assignments.py │ │ ├── test_chargeback_manual.py │ │ ├── test_dashboard.py │ │ ├── test_download_report.py │ │ ├── test_optimization.py │ │ ├── test_reports_with_timelines.py │ │ ├── test_rss.py │ │ └── test_timelines_rss_removed.py │ ├── migration_analytics │ │ ├── __init__.py │ │ └── test_migration_analytics.py │ ├── networks │ │ ├── __init__.py │ │ ├── nuage │ │ │ ├── __init__.py │ │ │ ├── test_automation.py │ │ │ ├── test_events_are_triggered.py │ │ │ ├── test_inventory.py │ │ │ └── test_operations.py │ │ ├── test_network_providers.py │ │ ├── test_provision_to_virtual_network.py │ │ ├── test_sdn_balancers.py │ │ ├── test_sdn_crud.py │ │ ├── test_sdn_downloads.py │ │ ├── test_sdn_inventory_collection.py │ │ ├── test_sdn_navigation.py │ │ ├── test_sdn_ports.py │ │ ├── test_sdn_security_groups.py │ │ ├── test_sdn_topology.py │ │ └── test_tag_tagvis.py │ ├── openstack │ │ ├── __init__.py │ │ ├── cloud │ │ │ ├── __init__.py │ │ │ ├── test_flavors.py │ │ │ ├── test_instances.py │ │ │ ├── test_networks.py │ │ │ ├── test_provider.py │ │ │ ├── test_volume_backup.py │ │ │ └── test_volumes.py │ │ └── infrastructure │ │ │ ├── __init__.py │ │ │ ├── test_host_lifecycle.py │ │ │ ├── test_host_power_control.py │ │ │ ├── test_hosts.py │ │ │ ├── test_provider.py │ │ │ ├── test_relationships.py │ │ │ ├── test_resources.py │ │ │ └── test_roles.py │ ├── optimize │ │ └── test_bottlenecks.py │ ├── perf │ │ ├── __init__.py │ │ └── workloads │ │ │ ├── __init__.py │ │ │ ├── test_capacity_and_utilization.py │ │ │ ├── test_capacity_and_utilization_replication.py │ │ │ ├── test_idle.py │ │ │ ├── test_memory_leak.py │ │ │ ├── test_provisioning.py │ │ │ ├── test_refresh_providers.py │ │ │ ├── test_refresh_vms.py │ │ │ └── test_smartstate_analysis.py │ ├── physical_infrastructure │ │ ├── __init__.py │ │ ├── api │ │ │ ├── test_physical_server_api.py │ │ │ ├── test_physical_server_events_api.py │ │ │ ├── test_physical_server_inventory_api.py │ │ │ ├── test_physical_switch_api.py │ │ │ └── test_physical_switch_inventory_api.py │ │ ├── test_physical_rack.py │ │ ├── test_providers.py │ │ ├── test_redfish_physical_chassis.py │ │ ├── test_redfish_physical_infra_events.py │ │ ├── test_redfish_physical_racks.py │ │ ├── test_redfish_physical_server_details.py │ │ ├── test_redfish_providers.py │ │ └── ui │ │ │ ├── test_physical_overview.py │ │ │ ├── test_physical_server_details.py │ │ │ ├── test_physical_server_details_buttons.py │ │ │ ├── test_physical_server_list.py │ │ │ ├── test_physical_server_list_buttons.py │ │ │ ├── test_physical_switch_details.py │ │ │ └── test_physical_switch_list.py │ ├── platform │ │ ├── test_advanced_config.py │ │ └── test_locale.py │ ├── pod │ │ ├── __init__.py │ │ └── test_appliance_crud.py │ ├── satellite │ │ └── test_satellite_manual.py │ ├── services │ │ ├── __init__.py │ │ ├── test_add_remove_vm_to_service.py │ │ ├── test_ansible_workflow_servicecatalogs.py │ │ ├── test_catalog.py │ │ ├── test_catalog_item.py │ │ ├── test_cloud_service_catalogs.py │ │ ├── test_config_provider_servicecatalogs.py │ │ ├── test_dialog_element_in_catalog.py │ │ ├── test_dialog_regex_validation_in_catalog.py │ │ ├── test_different_dialogs_in_catalogs.py │ │ ├── test_dynamicdd_dialogelement.py │ │ ├── test_generic_service_catalogs.py │ │ ├── test_iso_service_catalogs.py │ │ ├── test_myservice.py │ │ ├── test_operations.py │ │ ├── test_orchestration_template.py │ │ ├── test_provision_stack.py │ │ ├── test_pxe_service_catalogs.py │ │ ├── test_request.py │ │ ├── test_rest_services.py │ │ ├── test_service_catalog_dialog_manual.py │ │ ├── test_service_catalogs.py │ │ ├── test_service_catalogs_bundles.py │ │ ├── test_service_catalogs_multi_region.py │ │ ├── test_service_customer_bz.py │ │ ├── test_service_manual_approval.py │ │ ├── test_service_performance.py │ │ ├── test_service_rbac.py │ │ └── test_tower_manual.py │ ├── ssui │ │ ├── test_ssui_ansible_service.py │ │ ├── test_ssui_dashboard.py │ │ ├── test_ssui_myservice.py │ │ ├── test_ssui_service_catalogs.py │ │ ├── test_ssui_service_dialog.py │ │ └── test_ssui_tags.py │ ├── storage │ │ ├── __init__.py │ │ ├── test_manager.py │ │ ├── test_object_store_container.py │ │ ├── test_object_store_object.py │ │ ├── test_volume.py │ │ ├── test_volume_backup.py │ │ ├── test_volume_snapshot.py │ │ └── test_volume_types.py │ ├── test_appliance.py │ ├── test_csrf.py │ ├── test_db_migrate.py │ ├── test_db_migrate_manual.py │ ├── test_login.py │ ├── test_manual.py │ ├── test_modules_importable.py │ ├── test_providerless_rest.py │ ├── test_replication.py │ ├── test_rest.py │ ├── test_rest_manual.py │ ├── test_server_manual.py │ ├── test_ui.py │ ├── test_utilization.py │ ├── v2v │ │ ├── test_conversion_host_ui.py │ │ ├── test_csv_import.py │ │ ├── test_migration_throttling.py │ │ ├── test_post_migrations.py │ │ ├── test_rest_migrations.py │ │ ├── test_v2v_ansible.py │ │ ├── test_v2v_cancel_migrations.py │ │ ├── test_v2v_manual.py │ │ ├── test_v2v_migrations.py │ │ ├── test_v2v_migrations_single_vcenter.py │ │ ├── test_v2v_migrations_ui.py │ │ ├── test_v2v_schedule_migrations.py │ │ └── test_v2v_smoke.py │ └── webui │ │ ├── test_advanced_search.py │ │ ├── test_expression_editor.py │ │ ├── test_general_ui.py │ │ ├── test_general_ui_manual.py │ │ ├── test_rest.py │ │ └── test_splitter.py ├── utils │ ├── __init__.py │ ├── ansible.py │ ├── ansible_conf │ │ ├── custom_attributes_basic_script.yml │ │ ├── providers_basic_script.yml │ │ ├── tags_basic_script.yml │ │ └── users_basic_script.yml │ ├── apidoc.py │ ├── appliance │ │ ├── __init__.py │ │ ├── console.py │ │ ├── constants.py │ │ ├── db.py │ │ ├── implementations │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── rest.py │ │ │ ├── ssui.py │ │ │ └── ui.py │ │ ├── plugin.py │ │ └── services.py │ ├── auth │ │ └── __init__.py │ ├── blockers.py │ ├── browser.py │ ├── bz.py │ ├── category.py │ ├── conf.py │ ├── datafile.py │ ├── db.py │ ├── deprecation.py │ ├── dockerbot │ │ ├── README.md │ │ ├── __init__.py │ │ ├── build_container.py │ │ ├── check_prs.py │ │ ├── dockerbot.py │ │ ├── pytestbase │ │ │ ├── Dockerfile │ │ │ ├── __init__.py │ │ │ ├── check_provisioned.py │ │ │ ├── get_keys.py │ │ │ ├── post_result.py │ │ │ ├── setup.sh │ │ │ └── verify_commit.py │ │ └── sel_container.py │ ├── error.py │ ├── events.py │ ├── events_db.py │ ├── ftp.py │ ├── generators.py │ ├── grafana.py │ ├── ipmi.py │ ├── log.py │ ├── log_validator.py │ ├── net.py │ ├── ocp_cli.py │ ├── path.py │ ├── perf.py │ ├── perf_message_stats.py │ ├── ports.py │ ├── pretty.py │ ├── providers.py │ ├── pytest_shortcuts.py │ ├── quote.py │ ├── rest.py │ ├── smem_memory_monitor.py │ ├── smtp_collector_client.py │ ├── soft_get.py │ ├── ssh.py │ ├── ssh_expect.py │ ├── stats.py │ ├── template │ │ ├── README.md │ │ ├── __init__.py │ │ ├── base.py │ │ ├── ec2.py │ │ ├── gce.py │ │ ├── openstack.py │ │ ├── rhevm.py │ │ ├── rhopenshift.py │ │ ├── scvmm.py │ │ ├── template_upload.py │ │ └── virtualcenter.py │ ├── testgen.py │ ├── tests │ │ ├── README │ │ ├── test_connect_ssh.py │ │ ├── test_datafile_fixture.py │ │ ├── test_fixtureconf_fixture.py │ │ ├── test_instance_class_method.py │ │ ├── test_ipappliance.py │ │ ├── test_metadoc.py │ │ ├── test_process_pytest_path.py │ │ ├── test_providers.py │ │ ├── test_pytest_shortcuts.py │ │ ├── test_safe_string.py │ │ ├── test_simple_locators.py │ │ ├── test_soft_assert.py │ │ ├── test_soft_get.py │ │ ├── test_ssh_client.py │ │ ├── test_units.py │ │ ├── test_version.py │ │ ├── test_vm_name_assignee.py │ │ └── test_vm_name_assignee_func_scope.py │ ├── timeutil.py │ ├── tracer.py │ ├── trackerbot.py │ ├── units.py │ ├── update.py │ ├── version.py │ ├── video.py │ ├── virtual_machines.py │ ├── wait.py │ └── workloads.py └── v2v │ ├── __init__.py │ ├── infrastructure_mapping.py │ ├── migration_plans.py │ └── migration_settings.py ├── cfme_test.sh ├── conf ├── cfme_data.yaml.template ├── credentials.yaml.template ├── docker.yaml.template ├── env.yaml.template ├── perf_tests.yaml.template ├── polarion_tools.local.yaml.template ├── polarion_tools.yaml ├── polarion_tools.yaml.template ├── supportability.yaml └── supportability.yaml.template ├── conftest.py ├── data ├── az_pwsh_cloudinit.cfg ├── basiccloudinit.cfg ├── bugzilla-queries │ └── fixed_in_query.yaml ├── cert-auths │ └── cmqe-tests-openshift-signer.crt ├── cfme │ └── utils │ │ └── test_datafile_fixture │ │ └── test_template ├── cli │ └── QECliTesting.yaml ├── firefox_profile.js.template ├── orchestration │ ├── aws_vm_template.json │ ├── aws_vm_template.yaml │ ├── azure_vm_template.json │ ├── openstack_vm_template.data │ └── rhos13_vm_template.data ├── patches │ ├── autofocus.js.diff │ ├── autofocus_57.js.diff │ ├── miq_application.js.diff │ └── ovirt_gem.patch ├── qe_event_handler.xml ├── reports_crud │ └── basic01.yaml ├── resources │ └── middleware │ │ ├── cfme_test_ear_middleware.ear │ │ ├── cfme_test_jar_middleware.jar │ │ ├── cfme_test_war_middleware.war │ │ └── new_cfme_test_war_middleware.war ├── rhel6-iso.cfg ├── rhel6.cfg ├── rhel7.cfg ├── rhel8.cfg ├── rootpass.cfg ├── schedules_crud │ └── basic01.yaml ├── suite.yaml ├── templates │ ├── base.html │ ├── dist │ │ ├── css │ │ │ ├── bootstrap-select.min.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.min.css │ │ │ ├── font-awesome.min.css │ │ │ ├── patternfly.css │ │ │ └── patternfly.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── OpenSans-Bold-webfont.ttf │ │ │ ├── OpenSans-Bold-webfont.woff │ │ │ ├── OpenSans-Light-webfont.ttf │ │ │ ├── OpenSans-Light-webfont.woff │ │ │ ├── OpenSans-Regular-webfont.ttf │ │ │ ├── OpenSans-Regular-webfont.woff │ │ │ ├── OpenSans-Semibold-webfont.ttf │ │ │ ├── OpenSans-Semibold-webfont.woff │ │ │ ├── PatternFlyIcons-webfont.eot │ │ │ ├── PatternFlyIcons-webfont.svg │ │ │ ├── PatternFlyIcons-webfont.ttf │ │ │ ├── PatternFlyIcons-webfont.woff │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── img │ │ │ ├── brand.svg │ │ │ ├── console.png │ │ │ ├── favicon.ico │ │ │ ├── spinner-lg.gif │ │ │ ├── spinner-sm.gif │ │ │ ├── spinner-xs.gif │ │ │ └── spinner.gif │ │ ├── js │ │ │ ├── bootstrap-select.min.js │ │ │ ├── bootstrap.min.js │ │ │ ├── html5shiv.min.js │ │ │ ├── jquery.min.js │ │ │ └── patternfly.min.js │ │ ├── jstree.min.js │ │ ├── libs │ │ │ ├── jquery.js │ │ │ └── require.js │ │ └── themes │ │ │ └── default │ │ │ ├── 32px.png │ │ │ ├── 40px.png │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ └── throbber.gif │ ├── event_testing.html │ ├── failed_browser_tests.html │ ├── jenkins_report.html │ ├── pattern_base.html │ ├── smtp_result.html │ ├── template_tester_report.html │ ├── test_matrix.html │ ├── test_report.html │ ├── test_report_provider.html │ └── usage_report.html ├── ui │ ├── automate │ │ ├── ds2.xml │ │ └── test_create_snapshot_via_ae.rb │ ├── control │ │ ├── default_alerts.yaml │ │ ├── invalid.yaml │ │ └── policies.yaml │ ├── infrastructure │ │ └── test_host_provisioning │ │ │ └── vmware_esx_55.cfg │ └── intelligence │ │ ├── import_report.yaml │ │ └── import_widget.yaml ├── utils │ ├── cfmedb_load_config.rbt │ ├── cfmedb_set_config.rbt │ └── test_simple_locators │ │ └── elements.html └── vmware_esx_55_remote.cfg ├── dockerfiles ├── cfme_tests_base │ └── Dockerfile └── cfme_tests_img │ ├── Dockerfile │ └── xstartup ├── docs ├── Makefile ├── _static │ ├── .placeholder │ └── framework.png ├── conf.py ├── getting_started.rst ├── guides.rst ├── guides │ ├── abbrev.rst │ ├── browser_configuration.rst │ ├── bugzilla.rst │ ├── collections.rst │ ├── container.rst │ ├── debugging.rst │ ├── dev_guide.rst │ ├── documenting.rst │ ├── editors.rst │ ├── faq.rst │ ├── gotchas.rst │ ├── lint.rst │ ├── newprovider.rst │ ├── tipsntricks.rst │ ├── ui_modeling.rst │ └── vnc_selenium.rst ├── index.rst ├── inventory.py ├── modules.rst ├── pr_process.png └── requirements.txt ├── eng.user-words ├── entry_points.txt ├── log └── .placeholder ├── notebooks ├── BasicApplianceSetup.ipynb ├── Browser Session.ipynb ├── Interaction with Timelines Notebook.ipynb ├── MultiProcessing.ipynb └── SSUI Login.ipynb ├── pytest.ini ├── requirements.txt ├── requirements ├── .gitignore ├── __init__.py ├── constraints.txt ├── dev.txt ├── docs.txt ├── docs │ ├── positional-1.1.1-py2.py3-none-any.whl │ ├── readme.txt │ ├── yaycl-0.2.0-cp27-none-any.whl │ └── yaycl_crypt-0.2.0-cp27-none-any.whl ├── frozen.txt ├── frozen_docs.py3.txt ├── on_rtd.txt ├── package_map.yaml ├── perf.txt ├── quickstart │ └── needs.txt ├── template_docs.txt ├── template_non_imported.txt └── template_scanned_imports.txt ├── scripts ├── __init__.py ├── apishow.py ├── azure_cleanup.py ├── browser.py ├── clean_appliance.py ├── cleanup_edomain_templates.py ├── cleanup_old_vms.py ├── cleanup_openstack_fips.py ├── cleanup_openstack_instance_snapshot.py ├── cleanup_openstack_volumes.py ├── clone_domain.py ├── clone_template.py ├── coverage_report_jenkins.py ├── coverage_result.py ├── create_cu_vm.py ├── data │ ├── coverage │ │ ├── coverage_gem.rb │ │ ├── coverage_hook.rb │ │ ├── coverage_merger.rb │ │ └── manageiq-17302.patch │ └── enable-internal-db.rbt ├── ec2cleanup.py ├── enable_external_db.py ├── enable_internal_db.py ├── encrypt_conf.py ├── fetch_jenkins_artifacts.py ├── gen_ssl_cert.py ├── get_unregistered_vmware_files.py ├── gh-find.py ├── harden_security.py ├── image_upload_glance.py ├── install_netapp_lib.py ├── install_snmp_listener.py ├── install_vddk.py ├── jenkins_failure_analysis.py ├── jsongut.py ├── list_provider_vms.py ├── list_tests.py ├── loosen_pgssl_connections.py ├── mappings │ ├── metadata.json │ └── smem.json ├── matrix.py ├── ocp_cleanup.py ├── openshift │ ├── add_remove_persistent_volumes.sh │ ├── change_metrics_collection_threshold.rb │ └── create_ip_aliases.sh ├── perf_collect_logs.sh ├── post_jenkins_result.py ├── precompile_assets.py ├── print_tables.py ├── provider_usage.py ├── providers.py ├── record.py ├── refactoring │ ├── checkallimports.py │ ├── provider_move.py │ └── utils_move.py ├── restore.py ├── scap.rb ├── smtp_collector.py ├── sprout-cli.py ├── sync_template_tracker.py ├── template_tester.py ├── templates │ ├── cfme-run.smem │ └── cfme-run.summary ├── update_rhel.py ├── update_template.sh ├── utility-vm │ ├── Makefile │ ├── README │ ├── customization-script.sh │ ├── meta-data │ ├── rhel7.repo.template │ ├── rhel8.repo.template │ └── user-data.yaml └── wait_for_appliance_ui.py ├── setup.cfg ├── setup.py ├── sprout ├── .gitignore ├── README.rst ├── __init__.py ├── appliances │ ├── __init__.py │ ├── admin.py │ ├── api.py │ ├── context_processors.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_delayedprovisiontask.py │ │ ├── 0003_auto_20141218_1534.py │ │ ├── 0004_provider_appliance_limit.py │ │ ├── 0005_template_usable.py │ │ ├── 0006_auto_20150122_1256.py │ │ ├── 0007_provider_num_simultaneous_configuring.py │ │ ├── 0008_appliance_uuid.py │ │ ├── 0009_appliancepool_provider.py │ │ ├── 0010_appliance_power_state_changed.py │ │ ├── 0011_auto_20150212_0945.py │ │ ├── 0012_template_preconfigured.py │ │ ├── 0013_appliancepool_preconfigured.py │ │ ├── 0014_group_unconfigured_template_pool_size.py │ │ ├── 0015_auto_20150324_1528.py │ │ ├── 0016_appliancepool_not_needed_anymore.py │ │ ├── 0017_appliancepool_finished.py │ │ ├── 0018_mismatchversionmailer.py │ │ ├── 0019_auto_20150430_1546.py │ │ ├── 0020_appliance_lun_disk_connected.py │ │ ├── 0021_userappliancequota.py │ │ ├── 0022_appliancepool_yum_update.py │ │ ├── 0023_provider_disabled.py │ │ ├── 0024_template_suggested_delete.py │ │ ├── 0025_auto_20160106_1446.py │ │ ├── 0026_template_parent_template.py │ │ ├── 0027_auto_20160310_1637.py │ │ ├── 0028_auto_20160311_0918.py │ │ ├── 0029_provider_hidden.py │ │ ├── 0029_provider_user_groups.py │ │ ├── 0030_bugquery.py │ │ ├── 0030_merge.py │ │ ├── 0031_auto_20160506_0848.py │ │ ├── 0031_auto_20160511_0826.py │ │ ├── 0032_merge.py │ │ ├── 0033_merge.py │ │ ├── 0034_provider_allow_renaming.py │ │ ├── 0035_auto_20160922_1635.py │ │ ├── 0036_template_ga_released.py │ │ ├── 0037_auto_20170131_1058.py │ │ ├── 0038_auto_20170131_1512.py │ │ ├── 0039_auto_20170131_1512.py │ │ ├── 0040_provider_memory_limit.py │ │ ├── 0041_auto_20170131_1518.py │ │ ├── 0042_auto_20170131_1526.py │ │ ├── 0043_auto_20170131_1609.py │ │ ├── 0044_auto_20170201_1218.py │ │ ├── 0045_auto_20170403_0918.py │ │ ├── 0046_auto_20180201_1342.py │ │ ├── 0047_auto_20180216_1634.py │ │ ├── 0048_openshift_appliances_support.py │ │ ├── 0049_provider_provider_type.py │ │ ├── 0050_template_template_type.py │ │ ├── 0051_appliancepool_template_type.py │ │ ├── 0052_remove_appliancepool_is_container.py │ │ ├── 0053_ipaddress_made_bigger.py │ │ ├── 0054_openshift_project_made_bigger.py │ │ ├── 0055_migration_to_django225.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ ├── app-js │ │ │ ├── base.js │ │ │ └── my_appliances.js │ │ ├── css │ │ ├── custom.css │ │ ├── fonts │ │ ├── img │ │ └── js │ ├── tasks │ │ ├── __init__.py │ │ ├── maintainance.py │ │ ├── provisioning.py │ │ ├── service_ops.py │ │ └── template.py │ ├── templates │ │ ├── appliances │ │ │ ├── _dates.html │ │ │ ├── _providers.html │ │ │ ├── _versions.html │ │ │ ├── apidoc.html │ │ │ ├── my_appliances.html │ │ │ ├── provider_usage.html │ │ │ ├── providers.html │ │ │ ├── shepherd.html │ │ │ ├── swap_offenders.html │ │ │ ├── template_conf.html │ │ │ ├── templates.html │ │ │ └── vms │ │ │ │ ├── _buttons.html │ │ │ │ ├── _list.html │ │ │ │ └── index.html │ │ ├── base.html │ │ ├── bugs │ │ │ ├── bugs_base.html │ │ │ ├── list_query.html │ │ │ └── new_query.html │ │ ├── index.html │ │ ├── login.html │ │ └── password.html │ ├── templatetags │ │ ├── __init__.py │ │ └── appliances_extras.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── celery_runner ├── dockerfiles │ └── Dockerfile ├── logserver.py ├── manage.py ├── requirements.txt ├── sprout.sh └── sprout │ ├── __init__.py │ ├── celery.py │ ├── irc_bot.py │ ├── log.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── widgetastic_manageiq ├── __init__.py ├── expression_editor.py └── vm_reconfigure.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.ropeproject/config.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/README.md -------------------------------------------------------------------------------- /artifactor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/artifactor/__init__.py -------------------------------------------------------------------------------- /artifactor/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/artifactor/__main__.py -------------------------------------------------------------------------------- /artifactor/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifactor/plugins/filedump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/artifactor/plugins/filedump.py -------------------------------------------------------------------------------- /artifactor/plugins/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/artifactor/plugins/logger.py -------------------------------------------------------------------------------- /artifactor/plugins/ostriz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/artifactor/plugins/ostriz.py -------------------------------------------------------------------------------- /artifactor/plugins/post_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/artifactor/plugins/post_result.py -------------------------------------------------------------------------------- /artifactor/plugins/reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/artifactor/plugins/reporter.py -------------------------------------------------------------------------------- /artifactor/plugins/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/artifactor/plugins/test.py -------------------------------------------------------------------------------- /artifactor/plugins/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/artifactor/plugins/video.py -------------------------------------------------------------------------------- /cfme/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/ansible/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/ansible/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/ansible/credentials.py -------------------------------------------------------------------------------- /cfme/ansible/playbooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/ansible/playbooks.py -------------------------------------------------------------------------------- /cfme/ansible/repositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/ansible/repositories.py -------------------------------------------------------------------------------- /cfme/ansible_tower/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/ansible_tower/explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/ansible_tower/explorer.py -------------------------------------------------------------------------------- /cfme/ansible_tower/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/ansible_tower/jobs.py -------------------------------------------------------------------------------- /cfme/automate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/automate/__init__.py -------------------------------------------------------------------------------- /cfme/automate/buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/automate/buttons.py -------------------------------------------------------------------------------- /cfme/automate/dialog_import_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/automate/dialog_import_export.py -------------------------------------------------------------------------------- /cfme/automate/dialogs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/automate/dialogs/__init__.py -------------------------------------------------------------------------------- /cfme/automate/dialogs/dialog_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/automate/dialogs/dialog_box.py -------------------------------------------------------------------------------- /cfme/automate/dialogs/dialog_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/automate/dialogs/dialog_element.py -------------------------------------------------------------------------------- /cfme/automate/dialogs/dialog_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/automate/dialogs/dialog_tab.py -------------------------------------------------------------------------------- /cfme/automate/dialogs/service_dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/automate/dialogs/service_dialogs.py -------------------------------------------------------------------------------- /cfme/automate/explorer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/automate/explorer/__init__.py -------------------------------------------------------------------------------- /cfme/automate/explorer/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/automate/explorer/common.py -------------------------------------------------------------------------------- /cfme/automate/explorer/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/automate/explorer/domain.py -------------------------------------------------------------------------------- /cfme/automate/explorer/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/automate/explorer/instance.py -------------------------------------------------------------------------------- /cfme/automate/explorer/klass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/automate/explorer/klass.py -------------------------------------------------------------------------------- /cfme/automate/explorer/method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/automate/explorer/method.py -------------------------------------------------------------------------------- /cfme/automate/explorer/namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/automate/explorer/namespace.py -------------------------------------------------------------------------------- /cfme/automate/import_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/automate/import_export.py -------------------------------------------------------------------------------- /cfme/automate/provisioning_dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/automate/provisioning_dialogs.py -------------------------------------------------------------------------------- /cfme/automate/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/automate/requests.py -------------------------------------------------------------------------------- /cfme/automate/simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/automate/simulation.py -------------------------------------------------------------------------------- /cfme/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/base/__init__.py -------------------------------------------------------------------------------- /cfme/base/credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/base/credential.py -------------------------------------------------------------------------------- /cfme/base/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/base/rest.py -------------------------------------------------------------------------------- /cfme/base/ssui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/base/ssui.py -------------------------------------------------------------------------------- /cfme/base/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/base/ui.py -------------------------------------------------------------------------------- /cfme/cloud/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/cloud/availability_zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/cloud/availability_zone.py -------------------------------------------------------------------------------- /cfme/cloud/flavor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/cloud/flavor.py -------------------------------------------------------------------------------- /cfme/cloud/host_aggregates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/cloud/host_aggregates.py -------------------------------------------------------------------------------- /cfme/cloud/instance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/cloud/instance/__init__.py -------------------------------------------------------------------------------- /cfme/cloud/instance/azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/cloud/instance/azure.py -------------------------------------------------------------------------------- /cfme/cloud/instance/ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/cloud/instance/ec2.py -------------------------------------------------------------------------------- /cfme/cloud/instance/gce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/cloud/instance/gce.py -------------------------------------------------------------------------------- /cfme/cloud/instance/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/cloud/instance/image.py -------------------------------------------------------------------------------- /cfme/cloud/instance/openstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/cloud/instance/openstack.py -------------------------------------------------------------------------------- /cfme/cloud/keypairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/cloud/keypairs.py -------------------------------------------------------------------------------- /cfme/cloud/provider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/cloud/provider/__init__.py -------------------------------------------------------------------------------- /cfme/cloud/provider/azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/cloud/provider/azure.py -------------------------------------------------------------------------------- /cfme/cloud/provider/ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/cloud/provider/ec2.py -------------------------------------------------------------------------------- /cfme/cloud/provider/gce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/cloud/provider/gce.py -------------------------------------------------------------------------------- /cfme/cloud/provider/openstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/cloud/provider/openstack.py -------------------------------------------------------------------------------- /cfme/cloud/provider/vcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/cloud/provider/vcloud.py -------------------------------------------------------------------------------- /cfme/cloud/security_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/cloud/security_groups.py -------------------------------------------------------------------------------- /cfme/cloud/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/cloud/stack.py -------------------------------------------------------------------------------- /cfme/cloud/tenant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/cloud/tenant.py -------------------------------------------------------------------------------- /cfme/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/common/__init__.py -------------------------------------------------------------------------------- /cfme/common/candu_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/common/candu_views.py -------------------------------------------------------------------------------- /cfme/common/datastore_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/common/datastore_views.py -------------------------------------------------------------------------------- /cfme/common/host_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/common/host_views.py -------------------------------------------------------------------------------- /cfme/common/physical_server_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/common/physical_server_views.py -------------------------------------------------------------------------------- /cfme/common/physical_switch_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/common/physical_switch_views.py -------------------------------------------------------------------------------- /cfme/common/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/common/provider.py -------------------------------------------------------------------------------- /cfme/common/provider_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/common/provider_views.py -------------------------------------------------------------------------------- /cfme/common/topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/common/topology.py -------------------------------------------------------------------------------- /cfme/common/vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/common/vm.py -------------------------------------------------------------------------------- /cfme/common/vm_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/common/vm_console.py -------------------------------------------------------------------------------- /cfme/common/vm_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/common/vm_views.py -------------------------------------------------------------------------------- /cfme/configure/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/configure/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/configure/about.py -------------------------------------------------------------------------------- /cfme/configure/access_control/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/configure/access_control/__init__.py -------------------------------------------------------------------------------- /cfme/configure/configuration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/configure/documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/configure/documentation.py -------------------------------------------------------------------------------- /cfme/configure/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/configure/settings.py -------------------------------------------------------------------------------- /cfme/configure/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/configure/tasks.py -------------------------------------------------------------------------------- /cfme/containers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/containers/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/containers/build.py -------------------------------------------------------------------------------- /cfme/containers/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/containers/container.py -------------------------------------------------------------------------------- /cfme/containers/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/containers/image.py -------------------------------------------------------------------------------- /cfme/containers/image_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/containers/image_registry.py -------------------------------------------------------------------------------- /cfme/containers/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/containers/node.py -------------------------------------------------------------------------------- /cfme/containers/overview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/containers/overview.py -------------------------------------------------------------------------------- /cfme/containers/pod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/containers/pod.py -------------------------------------------------------------------------------- /cfme/containers/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/containers/project.py -------------------------------------------------------------------------------- /cfme/containers/provider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/containers/provider/__init__.py -------------------------------------------------------------------------------- /cfme/containers/provider/openshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/containers/provider/openshift.py -------------------------------------------------------------------------------- /cfme/containers/replicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/containers/replicator.py -------------------------------------------------------------------------------- /cfme/containers/route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/containers/route.py -------------------------------------------------------------------------------- /cfme/containers/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/containers/service.py -------------------------------------------------------------------------------- /cfme/containers/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/containers/template.py -------------------------------------------------------------------------------- /cfme/containers/topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/containers/topology.py -------------------------------------------------------------------------------- /cfme/containers/volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/containers/volume.py -------------------------------------------------------------------------------- /cfme/control/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/control/__init__.py -------------------------------------------------------------------------------- /cfme/control/explorer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/control/explorer/__init__.py -------------------------------------------------------------------------------- /cfme/control/explorer/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/control/explorer/actions.py -------------------------------------------------------------------------------- /cfme/control/explorer/alert_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/control/explorer/alert_profiles.py -------------------------------------------------------------------------------- /cfme/control/explorer/alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/control/explorer/alerts.py -------------------------------------------------------------------------------- /cfme/control/explorer/conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/control/explorer/conditions.py -------------------------------------------------------------------------------- /cfme/control/explorer/policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/control/explorer/policies.py -------------------------------------------------------------------------------- /cfme/control/explorer/policy_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/control/explorer/policy_profiles.py -------------------------------------------------------------------------------- /cfme/control/import_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/control/import_export.py -------------------------------------------------------------------------------- /cfme/control/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/control/log.py -------------------------------------------------------------------------------- /cfme/control/simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/control/simulation.py -------------------------------------------------------------------------------- /cfme/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/dashboard.py -------------------------------------------------------------------------------- /cfme/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/exceptions.py -------------------------------------------------------------------------------- /cfme/fixtures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/__init__.py -------------------------------------------------------------------------------- /cfme/fixtures/ansible_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/ansible_fixtures.py -------------------------------------------------------------------------------- /cfme/fixtures/ansible_tower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/ansible_tower.py -------------------------------------------------------------------------------- /cfme/fixtures/appliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/appliance.py -------------------------------------------------------------------------------- /cfme/fixtures/appliance_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/appliance_update.py -------------------------------------------------------------------------------- /cfme/fixtures/artifactor_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/artifactor_plugin.py -------------------------------------------------------------------------------- /cfme/fixtures/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/authentication.py -------------------------------------------------------------------------------- /cfme/fixtures/automate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/automate.py -------------------------------------------------------------------------------- /cfme/fixtures/base.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/fixtures/blockers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/blockers.py -------------------------------------------------------------------------------- /cfme/fixtures/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/browser.py -------------------------------------------------------------------------------- /cfme/fixtures/bzs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/bzs.py -------------------------------------------------------------------------------- /cfme/fixtures/candu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/candu.py -------------------------------------------------------------------------------- /cfme/fixtures/cfme_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/cfme_data.py -------------------------------------------------------------------------------- /cfme/fixtures/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/cli.py -------------------------------------------------------------------------------- /cfme/fixtures/datafile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/datafile.py -------------------------------------------------------------------------------- /cfme/fixtures/depot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/depot.py -------------------------------------------------------------------------------- /cfme/fixtures/dev_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/dev_branch.py -------------------------------------------------------------------------------- /cfme/fixtures/disable_forgery_protection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/disable_forgery_protection.py -------------------------------------------------------------------------------- /cfme/fixtures/embedded_ansible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/embedded_ansible.py -------------------------------------------------------------------------------- /cfme/fixtures/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/events.py -------------------------------------------------------------------------------- /cfme/fixtures/fixtureconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/fixtureconf.py -------------------------------------------------------------------------------- /cfme/fixtures/generic_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/generic_object.py -------------------------------------------------------------------------------- /cfme/fixtures/has_persistent_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/has_persistent_volume.py -------------------------------------------------------------------------------- /cfme/fixtures/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/log.py -------------------------------------------------------------------------------- /cfme/fixtures/maximized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/maximized.py -------------------------------------------------------------------------------- /cfme/fixtures/model_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/model_collections.py -------------------------------------------------------------------------------- /cfme/fixtures/multi_region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/multi_region.py -------------------------------------------------------------------------------- /cfme/fixtures/multi_tenancy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/multi_tenancy.py -------------------------------------------------------------------------------- /cfme/fixtures/nelson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/nelson.py -------------------------------------------------------------------------------- /cfme/fixtures/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/networks.py -------------------------------------------------------------------------------- /cfme/fixtures/nuage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/nuage.py -------------------------------------------------------------------------------- /cfme/fixtures/page_screenshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/page_screenshots.py -------------------------------------------------------------------------------- /cfme/fixtures/parallelizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/parallelizer/__init__.py -------------------------------------------------------------------------------- /cfme/fixtures/parallelizer/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/parallelizer/hooks.py -------------------------------------------------------------------------------- /cfme/fixtures/parallelizer/remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/parallelizer/remote.py -------------------------------------------------------------------------------- /cfme/fixtures/perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/perf.py -------------------------------------------------------------------------------- /cfme/fixtures/physical_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/physical_switch.py -------------------------------------------------------------------------------- /cfme/fixtures/portset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/portset.py -------------------------------------------------------------------------------- /cfme/fixtures/prov_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/prov_filter.py -------------------------------------------------------------------------------- /cfme/fixtures/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/provider.py -------------------------------------------------------------------------------- /cfme/fixtures/pxe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/pxe.py -------------------------------------------------------------------------------- /cfme/fixtures/pytest_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/pytest_store.py -------------------------------------------------------------------------------- /cfme/fixtures/qa_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/qa_contact.py -------------------------------------------------------------------------------- /cfme/fixtures/randomness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/randomness.py -------------------------------------------------------------------------------- /cfme/fixtures/rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/rbac.py -------------------------------------------------------------------------------- /cfme/fixtures/rdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/rdb.py -------------------------------------------------------------------------------- /cfme/fixtures/sauce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/sauce.py -------------------------------------------------------------------------------- /cfme/fixtures/screenshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/screenshots.py -------------------------------------------------------------------------------- /cfme/fixtures/service_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/service_fixtures.py -------------------------------------------------------------------------------- /cfme/fixtures/single_appliance_sprout.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/fixtures/skip_not_implemented.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/skip_not_implemented.py -------------------------------------------------------------------------------- /cfme/fixtures/smtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/smtp.py -------------------------------------------------------------------------------- /cfme/fixtures/soft_assert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/soft_assert.py -------------------------------------------------------------------------------- /cfme/fixtures/ssh_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/ssh_client.py -------------------------------------------------------------------------------- /cfme/fixtures/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/tag.py -------------------------------------------------------------------------------- /cfme/fixtures/tccheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/tccheck.py -------------------------------------------------------------------------------- /cfme/fixtures/templateloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/templateloader.py -------------------------------------------------------------------------------- /cfme/fixtures/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/templates.py -------------------------------------------------------------------------------- /cfme/fixtures/terminalreporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/terminalreporter.py -------------------------------------------------------------------------------- /cfme/fixtures/ui_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/ui_coverage.py -------------------------------------------------------------------------------- /cfme/fixtures/update_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/update_tests.py -------------------------------------------------------------------------------- /cfme/fixtures/utility_vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/utility_vm.py -------------------------------------------------------------------------------- /cfme/fixtures/v2v_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/v2v_fixtures.py -------------------------------------------------------------------------------- /cfme/fixtures/version_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/version_info.py -------------------------------------------------------------------------------- /cfme/fixtures/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/video.py -------------------------------------------------------------------------------- /cfme/fixtures/virtual_machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/virtual_machine.py -------------------------------------------------------------------------------- /cfme/fixtures/vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/vm.py -------------------------------------------------------------------------------- /cfme/fixtures/vm_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/vm_console.py -------------------------------------------------------------------------------- /cfme/fixtures/vporizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/vporizer.py -------------------------------------------------------------------------------- /cfme/fixtures/xunit_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/fixtures/xunit_tools.py -------------------------------------------------------------------------------- /cfme/generic_objects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/generic_objects/definition/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/generic_objects/definition/__init__.py -------------------------------------------------------------------------------- /cfme/generic_objects/definition/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/generic_objects/definition/rest.py -------------------------------------------------------------------------------- /cfme/generic_objects/definition/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/generic_objects/definition/ui.py -------------------------------------------------------------------------------- /cfme/generic_objects/instance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/generic_objects/instance/__init__.py -------------------------------------------------------------------------------- /cfme/generic_objects/instance/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/generic_objects/instance/rest.py -------------------------------------------------------------------------------- /cfme/generic_objects/instance/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/generic_objects/instance/ui.py -------------------------------------------------------------------------------- /cfme/infrastructure/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/infrastructure/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/infrastructure/cluster.py -------------------------------------------------------------------------------- /cfme/infrastructure/datastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/infrastructure/datastore.py -------------------------------------------------------------------------------- /cfme/infrastructure/deployment_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/infrastructure/deployment_roles.py -------------------------------------------------------------------------------- /cfme/infrastructure/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/infrastructure/host.py -------------------------------------------------------------------------------- /cfme/infrastructure/networking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/infrastructure/networking.py -------------------------------------------------------------------------------- /cfme/infrastructure/openstack_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/infrastructure/openstack_node.py -------------------------------------------------------------------------------- /cfme/infrastructure/provider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/infrastructure/provider/__init__.py -------------------------------------------------------------------------------- /cfme/infrastructure/provider/kubevirt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/infrastructure/provider/kubevirt.py -------------------------------------------------------------------------------- /cfme/infrastructure/provider/rhevm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/infrastructure/provider/rhevm.py -------------------------------------------------------------------------------- /cfme/infrastructure/provider/scvmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/infrastructure/provider/scvmm.py -------------------------------------------------------------------------------- /cfme/infrastructure/pxe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/infrastructure/pxe.py -------------------------------------------------------------------------------- /cfme/infrastructure/resource_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/infrastructure/resource_pool.py -------------------------------------------------------------------------------- /cfme/infrastructure/virtual_machines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/infrastructure/virtual_machines.py -------------------------------------------------------------------------------- /cfme/intelligence/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/intelligence/__init__.py -------------------------------------------------------------------------------- /cfme/intelligence/chargeback/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/intelligence/chargeback/__init__.py -------------------------------------------------------------------------------- /cfme/intelligence/chargeback/assignments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/intelligence/chargeback/assignments.py -------------------------------------------------------------------------------- /cfme/intelligence/chargeback/rates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/intelligence/chargeback/rates.py -------------------------------------------------------------------------------- /cfme/intelligence/optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/intelligence/optimization.py -------------------------------------------------------------------------------- /cfme/intelligence/reports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/intelligence/reports/__init__.py -------------------------------------------------------------------------------- /cfme/intelligence/reports/dashboards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/intelligence/reports/dashboards.py -------------------------------------------------------------------------------- /cfme/intelligence/reports/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/intelligence/reports/menus.py -------------------------------------------------------------------------------- /cfme/intelligence/reports/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/intelligence/reports/reports.py -------------------------------------------------------------------------------- /cfme/intelligence/reports/saved.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/intelligence/reports/saved.py -------------------------------------------------------------------------------- /cfme/intelligence/reports/schedules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/intelligence/reports/schedules.py -------------------------------------------------------------------------------- /cfme/intelligence/rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/intelligence/rss.py -------------------------------------------------------------------------------- /cfme/intelligence/timelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/intelligence/timelines.py -------------------------------------------------------------------------------- /cfme/js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/js.py -------------------------------------------------------------------------------- /cfme/markers/__init__.py: -------------------------------------------------------------------------------- 1 | # look at conftest for plugin loading via entrypoints 2 | -------------------------------------------------------------------------------- /cfme/markers/composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/markers/composite.py -------------------------------------------------------------------------------- /cfme/markers/crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/markers/crud.py -------------------------------------------------------------------------------- /cfme/markers/destructive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/markers/destructive.py -------------------------------------------------------------------------------- /cfme/markers/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/markers/env.py -------------------------------------------------------------------------------- /cfme/markers/env_markers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/markers/env_markers/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/markers/env_markers/provider.py -------------------------------------------------------------------------------- /cfme/markers/fixtureconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/markers/fixtureconf.py -------------------------------------------------------------------------------- /cfme/markers/isolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/markers/isolation.py -------------------------------------------------------------------------------- /cfme/markers/manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/markers/manual.py -------------------------------------------------------------------------------- /cfme/markers/marker_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/markers/marker_filters.py -------------------------------------------------------------------------------- /cfme/markers/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/markers/meta.py -------------------------------------------------------------------------------- /cfme/markers/perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/markers/perf.py -------------------------------------------------------------------------------- /cfme/markers/polarion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/markers/polarion.py -------------------------------------------------------------------------------- /cfme/markers/regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/markers/regression.py -------------------------------------------------------------------------------- /cfme/markers/requires.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/markers/requires.py -------------------------------------------------------------------------------- /cfme/markers/rhel_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/markers/rhel_tests.py -------------------------------------------------------------------------------- /cfme/markers/sauce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/markers/sauce.py -------------------------------------------------------------------------------- /cfme/markers/serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/markers/serial.py -------------------------------------------------------------------------------- /cfme/markers/skipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/markers/skipper.py -------------------------------------------------------------------------------- /cfme/markers/smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/markers/smoke.py -------------------------------------------------------------------------------- /cfme/markers/stream_excluder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/markers/stream_excluder.py -------------------------------------------------------------------------------- /cfme/markers/uncollect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/markers/uncollect.py -------------------------------------------------------------------------------- /cfme/markers/uses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/markers/uses.py -------------------------------------------------------------------------------- /cfme/metaplugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/metaplugins/__init__.py -------------------------------------------------------------------------------- /cfme/metaplugins/blockers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/metaplugins/blockers.py -------------------------------------------------------------------------------- /cfme/metaplugins/server_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/metaplugins/server_roles.py -------------------------------------------------------------------------------- /cfme/modeling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/modeling/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/modeling/base.py -------------------------------------------------------------------------------- /cfme/modeling/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/modeling/tests/test_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/modeling/tests/test_collections.py -------------------------------------------------------------------------------- /cfme/networks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/networks/__init__.py -------------------------------------------------------------------------------- /cfme/networks/balancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/networks/balancer.py -------------------------------------------------------------------------------- /cfme/networks/cloud_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/networks/cloud_network.py -------------------------------------------------------------------------------- /cfme/networks/floating_ips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/networks/floating_ips.py -------------------------------------------------------------------------------- /cfme/networks/network_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/networks/network_port.py -------------------------------------------------------------------------------- /cfme/networks/network_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/networks/network_router.py -------------------------------------------------------------------------------- /cfme/networks/provider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/networks/provider/__init__.py -------------------------------------------------------------------------------- /cfme/networks/provider/nuage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/networks/provider/nuage.py -------------------------------------------------------------------------------- /cfme/networks/security_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/networks/security_group.py -------------------------------------------------------------------------------- /cfme/networks/subnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/networks/subnet.py -------------------------------------------------------------------------------- /cfme/networks/topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/networks/topology.py -------------------------------------------------------------------------------- /cfme/networks/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/networks/views.py -------------------------------------------------------------------------------- /cfme/optimize/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/optimize/__init__.py -------------------------------------------------------------------------------- /cfme/optimize/bottlenecks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/optimize/bottlenecks.py -------------------------------------------------------------------------------- /cfme/optimize/utilization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/optimize/utilization.py -------------------------------------------------------------------------------- /cfme/physical/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/physical/physical_chassis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/physical/physical_chassis.py -------------------------------------------------------------------------------- /cfme/physical/physical_rack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/physical/physical_rack.py -------------------------------------------------------------------------------- /cfme/physical/physical_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/physical/physical_server.py -------------------------------------------------------------------------------- /cfme/physical/physical_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/physical/physical_storage.py -------------------------------------------------------------------------------- /cfme/physical/physical_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/physical/physical_switch.py -------------------------------------------------------------------------------- /cfme/physical/provider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/physical/provider/__init__.py -------------------------------------------------------------------------------- /cfme/physical/provider/lenovo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/physical/provider/lenovo.py -------------------------------------------------------------------------------- /cfme/physical/provider/redfish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/physical/provider/redfish.py -------------------------------------------------------------------------------- /cfme/provisioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/provisioning.py -------------------------------------------------------------------------------- /cfme/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/rest/abc.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/rest/gen_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/rest/gen_data.py -------------------------------------------------------------------------------- /cfme/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/roles.py -------------------------------------------------------------------------------- /cfme/scripting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/scripting/appliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/scripting/appliance.py -------------------------------------------------------------------------------- /cfme/scripting/bz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/scripting/bz.py -------------------------------------------------------------------------------- /cfme/scripting/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/scripting/conf.py -------------------------------------------------------------------------------- /cfme/scripting/disable_bytecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/scripting/disable_bytecode.py -------------------------------------------------------------------------------- /cfme/scripting/ipyshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/scripting/ipyshell.py -------------------------------------------------------------------------------- /cfme/scripting/link_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/scripting/link_config.py -------------------------------------------------------------------------------- /cfme/scripting/miq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/scripting/miq.py -------------------------------------------------------------------------------- /cfme/scripting/polarion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/scripting/polarion.py -------------------------------------------------------------------------------- /cfme/scripting/quickstart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/scripting/quickstart/__init__.py -------------------------------------------------------------------------------- /cfme/scripting/quickstart/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/scripting/quickstart/__main__.py -------------------------------------------------------------------------------- /cfme/scripting/quickstart/proc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/scripting/quickstart/proc.py -------------------------------------------------------------------------------- /cfme/scripting/quickstart/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/scripting/quickstart/system.py -------------------------------------------------------------------------------- /cfme/scripting/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/scripting/release.py -------------------------------------------------------------------------------- /cfme/scripting/requirement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/scripting/requirement.py -------------------------------------------------------------------------------- /cfme/scripting/runtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/scripting/runtest.py -------------------------------------------------------------------------------- /cfme/scripting/setup_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/scripting/setup_env.py -------------------------------------------------------------------------------- /cfme/scripting/sprout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/scripting/sprout.py -------------------------------------------------------------------------------- /cfme/scripting/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/scripting/tests/test_quickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/scripting/tests/test_quickstart.py -------------------------------------------------------------------------------- /cfme/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/services/catalogs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/services/catalogs/__init__.py -------------------------------------------------------------------------------- /cfme/services/catalogs/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/services/catalogs/catalog.py -------------------------------------------------------------------------------- /cfme/services/dashboard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/services/dashboard/__init__.py -------------------------------------------------------------------------------- /cfme/services/dashboard/ssui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/services/dashboard/ssui.py -------------------------------------------------------------------------------- /cfme/services/myservice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/services/myservice/__init__.py -------------------------------------------------------------------------------- /cfme/services/myservice/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/services/myservice/rest.py -------------------------------------------------------------------------------- /cfme/services/myservice/ssui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/services/myservice/ssui.py -------------------------------------------------------------------------------- /cfme/services/myservice/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/services/myservice/ui.py -------------------------------------------------------------------------------- /cfme/services/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/services/requests.py -------------------------------------------------------------------------------- /cfme/services/service_catalogs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/services/service_catalogs/__init__.py -------------------------------------------------------------------------------- /cfme/services/service_catalogs/ssui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/services/service_catalogs/ssui.py -------------------------------------------------------------------------------- /cfme/services/service_catalogs/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/services/service_catalogs/ui.py -------------------------------------------------------------------------------- /cfme/services/workloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/services/workloads.py -------------------------------------------------------------------------------- /cfme/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/storage/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/storage/manager.py -------------------------------------------------------------------------------- /cfme/storage/object_store_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/storage/object_store_container.py -------------------------------------------------------------------------------- /cfme/storage/object_store_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/storage/object_store_object.py -------------------------------------------------------------------------------- /cfme/storage/volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/storage/volume.py -------------------------------------------------------------------------------- /cfme/storage/volume_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/storage/volume_backup.py -------------------------------------------------------------------------------- /cfme/storage/volume_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/storage/volume_snapshot.py -------------------------------------------------------------------------------- /cfme/storage/volume_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/storage/volume_type.py -------------------------------------------------------------------------------- /cfme/test_framework/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/test_framework/__init__.py -------------------------------------------------------------------------------- /cfme/test_framework/appliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/test_framework/appliance.py -------------------------------------------------------------------------------- /cfme/test_framework/appliance_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/test_framework/appliance_hooks.py -------------------------------------------------------------------------------- /cfme/test_framework/appliance_police.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/test_framework/appliance_police.py -------------------------------------------------------------------------------- /cfme/test_framework/browser_isolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/test_framework/browser_isolation.py -------------------------------------------------------------------------------- /cfme/test_framework/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/test_framework/config.py -------------------------------------------------------------------------------- /cfme/test_framework/pytest_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/test_framework/pytest_plugin.py -------------------------------------------------------------------------------- /cfme/test_framework/sprout/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/test_framework/sprout/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/test_framework/sprout/client.py -------------------------------------------------------------------------------- /cfme/test_framework/sprout/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/test_framework/sprout/plugin.py -------------------------------------------------------------------------------- /cfme/test_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/test_requirements.py -------------------------------------------------------------------------------- /cfme/tests/.polarion_tests: -------------------------------------------------------------------------------- 1 | Marker for directory containing Polarion tests. 2 | -------------------------------------------------------------------------------- /cfme/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/tests/automate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/automate/__init__.py -------------------------------------------------------------------------------- /cfme/tests/automate/test_automate_manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/automate/test_automate_manual.py -------------------------------------------------------------------------------- /cfme/tests/automate/test_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/automate/test_class.py -------------------------------------------------------------------------------- /cfme/tests/automate/test_common_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/automate/test_common_methods.py -------------------------------------------------------------------------------- /cfme/tests/automate/test_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/automate/test_domain.py -------------------------------------------------------------------------------- /cfme/tests/automate/test_domain_priority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/automate/test_domain_priority.py -------------------------------------------------------------------------------- /cfme/tests/automate/test_file_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/automate/test_file_import.py -------------------------------------------------------------------------------- /cfme/tests/automate/test_git_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/automate/test_git_import.py -------------------------------------------------------------------------------- /cfme/tests/automate/test_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/automate/test_instance.py -------------------------------------------------------------------------------- /cfme/tests/automate/test_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/automate/test_method.py -------------------------------------------------------------------------------- /cfme/tests/automate/test_namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/automate/test_namespace.py -------------------------------------------------------------------------------- /cfme/tests/automate/test_rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/automate/test_rest.py -------------------------------------------------------------------------------- /cfme/tests/automate/test_service_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/automate/test_service_dialog.py -------------------------------------------------------------------------------- /cfme/tests/automate/test_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/automate/test_simulation.py -------------------------------------------------------------------------------- /cfme/tests/automate/test_smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/automate/test_smoke.py -------------------------------------------------------------------------------- /cfme/tests/automate/test_vmware_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/automate/test_vmware_methods.py -------------------------------------------------------------------------------- /cfme/tests/candu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/candu/__init__.py -------------------------------------------------------------------------------- /cfme/tests/candu/test_azone_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/candu/test_azone_graph.py -------------------------------------------------------------------------------- /cfme/tests/candu/test_candu_manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/candu/test_candu_manual.py -------------------------------------------------------------------------------- /cfme/tests/candu/test_cluster_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/candu/test_cluster_graph.py -------------------------------------------------------------------------------- /cfme/tests/candu/test_datastore_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/candu/test_datastore_graph.py -------------------------------------------------------------------------------- /cfme/tests/candu/test_gap_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/candu/test_gap_collection.py -------------------------------------------------------------------------------- /cfme/tests/candu/test_graph_groupbytag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/candu/test_graph_groupbytag.py -------------------------------------------------------------------------------- /cfme/tests/candu/test_host_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/candu/test_host_graph.py -------------------------------------------------------------------------------- /cfme/tests/candu/test_nor_rightsize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/candu/test_nor_rightsize.py -------------------------------------------------------------------------------- /cfme/tests/candu/test_utilization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/candu/test_utilization.py -------------------------------------------------------------------------------- /cfme/tests/candu/test_vm_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/candu/test_vm_graph.py -------------------------------------------------------------------------------- /cfme/tests/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/cli/__init__.py -------------------------------------------------------------------------------- /cfme/tests/cli/test_appliance_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/cli/test_appliance_cli.py -------------------------------------------------------------------------------- /cfme/tests/cli/test_appliance_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/cli/test_appliance_console.py -------------------------------------------------------------------------------- /cfme/tests/cli/test_appliance_log_rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/cli/test_appliance_log_rotate.py -------------------------------------------------------------------------------- /cfme/tests/cli/test_appliance_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/cli/test_appliance_update.py -------------------------------------------------------------------------------- /cfme/tests/cli/test_evmserverd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/cli/test_evmserverd.py -------------------------------------------------------------------------------- /cfme/tests/cli/test_rake_evm_automate-53.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/cli/test_rake_evm_automate-53.py -------------------------------------------------------------------------------- /cfme/tests/cloud/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/tests/cloud/test_azure_manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/cloud/test_azure_manual.py -------------------------------------------------------------------------------- /cfme/tests/cloud/test_cloud_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/cloud/test_cloud_events.py -------------------------------------------------------------------------------- /cfme/tests/cloud/test_cloud_timelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/cloud/test_cloud_timelines.py -------------------------------------------------------------------------------- /cfme/tests/cloud/test_keypairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/cloud/test_keypairs.py -------------------------------------------------------------------------------- /cfme/tests/cloud/test_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/cloud/test_providers.py -------------------------------------------------------------------------------- /cfme/tests/cloud/test_quota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/cloud/test_quota.py -------------------------------------------------------------------------------- /cfme/tests/cloud/test_quota_tagging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/cloud/test_quota_tagging.py -------------------------------------------------------------------------------- /cfme/tests/cloud/test_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/cloud/test_snapshot.py -------------------------------------------------------------------------------- /cfme/tests/cloud/test_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/cloud/test_stack.py -------------------------------------------------------------------------------- /cfme/tests/cloud/test_tag_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/cloud/test_tag_mapping.py -------------------------------------------------------------------------------- /cfme/tests/cloud/test_targeted_refresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/cloud/test_targeted_refresh.py -------------------------------------------------------------------------------- /cfme/tests/cloud/test_tenant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/cloud/test_tenant.py -------------------------------------------------------------------------------- /cfme/tests/cloud/test_tenant_quota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/cloud/test_tenant_quota.py -------------------------------------------------------------------------------- /cfme/tests/cloud_infra_common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/cloud_infra_common/__init__.py -------------------------------------------------------------------------------- /cfme/tests/configure/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/tests/configure/test_about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_about.py -------------------------------------------------------------------------------- /cfme/tests/configure/test_access_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_access_control.py -------------------------------------------------------------------------------- /cfme/tests/configure/test_config_manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_config_manual.py -------------------------------------------------------------------------------- /cfme/tests/configure/test_database_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_database_ui.py -------------------------------------------------------------------------------- /cfme/tests/configure/test_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_docs.py -------------------------------------------------------------------------------- /cfme/tests/configure/test_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_email.py -------------------------------------------------------------------------------- /cfme/tests/configure/test_landing_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_landing_page.py -------------------------------------------------------------------------------- /cfme/tests/configure/test_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_logs.py -------------------------------------------------------------------------------- /cfme/tests/configure/test_ntp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_ntp_server.py -------------------------------------------------------------------------------- /cfme/tests/configure/test_paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_paginator.py -------------------------------------------------------------------------------- /cfme/tests/configure/test_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_proxy.py -------------------------------------------------------------------------------- /cfme/tests/configure/test_region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_region.py -------------------------------------------------------------------------------- /cfme/tests/configure/test_rest_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_rest_config.py -------------------------------------------------------------------------------- /cfme/tests/configure/test_server_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_server_name.py -------------------------------------------------------------------------------- /cfme/tests/configure/test_server_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_server_roles.py -------------------------------------------------------------------------------- /cfme/tests/configure/test_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_tag.py -------------------------------------------------------------------------------- /cfme/tests/configure/test_tag_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_tag_category.py -------------------------------------------------------------------------------- /cfme/tests/configure/test_timeprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_timeprofile.py -------------------------------------------------------------------------------- /cfme/tests/configure/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_version.py -------------------------------------------------------------------------------- /cfme/tests/configure/test_visual_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_visual_cloud.py -------------------------------------------------------------------------------- /cfme/tests/configure/test_visual_infra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_visual_infra.py -------------------------------------------------------------------------------- /cfme/tests/configure/test_workers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_workers.py -------------------------------------------------------------------------------- /cfme/tests/configure/test_zones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/configure/test_zones.py -------------------------------------------------------------------------------- /cfme/tests/containers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/tests/containers/test_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/containers/test_alerts.py -------------------------------------------------------------------------------- /cfme/tests/containers/test_basic_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/containers/test_basic_metrics.py -------------------------------------------------------------------------------- /cfme/tests/containers/test_breadcrumbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/containers/test_breadcrumbs.py -------------------------------------------------------------------------------- /cfme/tests/containers/test_chargeback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/containers/test_chargeback.py -------------------------------------------------------------------------------- /cfme/tests/containers/test_cockpit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/containers/test_cockpit.py -------------------------------------------------------------------------------- /cfme/tests/containers/test_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/containers/test_labels.py -------------------------------------------------------------------------------- /cfme/tests/containers/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/containers/test_logging.py -------------------------------------------------------------------------------- /cfme/tests/containers/test_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/containers/test_node.py -------------------------------------------------------------------------------- /cfme/tests/containers/test_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/containers/test_properties.py -------------------------------------------------------------------------------- /cfme/tests/containers/test_relationships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/containers/test_relationships.py -------------------------------------------------------------------------------- /cfme/tests/containers/test_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/containers/test_reports.py -------------------------------------------------------------------------------- /cfme/tests/containers/test_search_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/containers/test_search_bar.py -------------------------------------------------------------------------------- /cfme/tests/containers/test_ssl_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/containers/test_ssl_providers.py -------------------------------------------------------------------------------- /cfme/tests/containers/test_start_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/containers/test_start_page.py -------------------------------------------------------------------------------- /cfme/tests/containers/test_table_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/containers/test_table_views.py -------------------------------------------------------------------------------- /cfme/tests/containers/test_tables_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/containers/test_tables_fields.py -------------------------------------------------------------------------------- /cfme/tests/containers/test_tables_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/containers/test_tables_sort.py -------------------------------------------------------------------------------- /cfme/tests/containers/test_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/containers/test_tags.py -------------------------------------------------------------------------------- /cfme/tests/containers/test_topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/containers/test_topology.py -------------------------------------------------------------------------------- /cfme/tests/control/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/control/__init__.py -------------------------------------------------------------------------------- /cfme/tests/control/test_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/control/test_actions.py -------------------------------------------------------------------------------- /cfme/tests/control/test_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/control/test_alerts.py -------------------------------------------------------------------------------- /cfme/tests/control/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/control/test_basic.py -------------------------------------------------------------------------------- /cfme/tests/control/test_bugs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/control/test_bugs.py -------------------------------------------------------------------------------- /cfme/tests/control/test_compliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/control/test_compliance.py -------------------------------------------------------------------------------- /cfme/tests/control/test_default_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/control/test_default_alerts.py -------------------------------------------------------------------------------- /cfme/tests/control/test_export_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/control/test_export_policies.py -------------------------------------------------------------------------------- /cfme/tests/control/test_import_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/control/test_import_policies.py -------------------------------------------------------------------------------- /cfme/tests/control/test_rest_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/control/test_rest_control.py -------------------------------------------------------------------------------- /cfme/tests/control/test_smoke_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/control/test_smoke_control.py -------------------------------------------------------------------------------- /cfme/tests/infrastructure/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/tests/infrastructure/test_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/infrastructure/test_host.py -------------------------------------------------------------------------------- /cfme/tests/infrastructure/test_kubevirt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/infrastructure/test_kubevirt.py -------------------------------------------------------------------------------- /cfme/tests/infrastructure/test_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/infrastructure/test_providers.py -------------------------------------------------------------------------------- /cfme/tests/infrastructure/test_pxe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/infrastructure/test_pxe.py -------------------------------------------------------------------------------- /cfme/tests/infrastructure/test_quota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/infrastructure/test_quota.py -------------------------------------------------------------------------------- /cfme/tests/infrastructure/test_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/infrastructure/test_snapshot.py -------------------------------------------------------------------------------- /cfme/tests/infrastructure/test_ssa_vddk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/infrastructure/test_ssa_vddk.py -------------------------------------------------------------------------------- /cfme/tests/infrastructure/test_timelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/infrastructure/test_timelines.py -------------------------------------------------------------------------------- /cfme/tests/infrastructure/test_vm_clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/infrastructure/test_vm_clone.py -------------------------------------------------------------------------------- /cfme/tests/infrastructure/test_vm_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/infrastructure/test_vm_delete.py -------------------------------------------------------------------------------- /cfme/tests/infrastructure/test_vm_rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/infrastructure/test_vm_rest.py -------------------------------------------------------------------------------- /cfme/tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/tests/integration/test_auth_manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/integration/test_auth_manual.py -------------------------------------------------------------------------------- /cfme/tests/integration/test_auth_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/integration/test_auth_scripts.py -------------------------------------------------------------------------------- /cfme/tests/integration/test_cfme_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/integration/test_cfme_auth.py -------------------------------------------------------------------------------- /cfme/tests/integration/test_db_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/integration/test_db_auth.py -------------------------------------------------------------------------------- /cfme/tests/integration/test_ldap_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/integration/test_ldap_auth.py -------------------------------------------------------------------------------- /cfme/tests/intelligence/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/tests/intelligence/reports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/tests/intelligence/test_chargeback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/intelligence/test_chargeback.py -------------------------------------------------------------------------------- /cfme/tests/intelligence/test_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/intelligence/test_dashboard.py -------------------------------------------------------------------------------- /cfme/tests/intelligence/test_rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/intelligence/test_rss.py -------------------------------------------------------------------------------- /cfme/tests/migration_analytics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/tests/networks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/tests/networks/nuage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/tests/networks/nuage/test_inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/networks/nuage/test_inventory.py -------------------------------------------------------------------------------- /cfme/tests/networks/test_sdn_balancers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/networks/test_sdn_balancers.py -------------------------------------------------------------------------------- /cfme/tests/networks/test_sdn_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/networks/test_sdn_crud.py -------------------------------------------------------------------------------- /cfme/tests/networks/test_sdn_downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/networks/test_sdn_downloads.py -------------------------------------------------------------------------------- /cfme/tests/networks/test_sdn_navigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/networks/test_sdn_navigation.py -------------------------------------------------------------------------------- /cfme/tests/networks/test_sdn_ports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/networks/test_sdn_ports.py -------------------------------------------------------------------------------- /cfme/tests/networks/test_sdn_topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/networks/test_sdn_topology.py -------------------------------------------------------------------------------- /cfme/tests/networks/test_tag_tagvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/networks/test_tag_tagvis.py -------------------------------------------------------------------------------- /cfme/tests/openstack/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for Openstack cloud and infra providers""" 2 | -------------------------------------------------------------------------------- /cfme/tests/openstack/cloud/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for Openstack cloud provider""" 2 | -------------------------------------------------------------------------------- /cfme/tests/openstack/cloud/test_flavors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/openstack/cloud/test_flavors.py -------------------------------------------------------------------------------- /cfme/tests/openstack/cloud/test_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/openstack/cloud/test_networks.py -------------------------------------------------------------------------------- /cfme/tests/openstack/cloud/test_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/openstack/cloud/test_provider.py -------------------------------------------------------------------------------- /cfme/tests/openstack/cloud/test_volumes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/openstack/cloud/test_volumes.py -------------------------------------------------------------------------------- /cfme/tests/openstack/infrastructure/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for Openstack infrastructure provider""" 2 | -------------------------------------------------------------------------------- /cfme/tests/optimize/test_bottlenecks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/optimize/test_bottlenecks.py -------------------------------------------------------------------------------- /cfme/tests/perf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/tests/perf/workloads/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/tests/perf/workloads/test_idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/perf/workloads/test_idle.py -------------------------------------------------------------------------------- /cfme/tests/physical_infrastructure/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/tests/platform/test_advanced_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/platform/test_advanced_config.py -------------------------------------------------------------------------------- /cfme/tests/platform/test_locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/platform/test_locale.py -------------------------------------------------------------------------------- /cfme/tests/pod/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/tests/pod/test_appliance_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/pod/test_appliance_crud.py -------------------------------------------------------------------------------- /cfme/tests/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/tests/services/test_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/services/test_catalog.py -------------------------------------------------------------------------------- /cfme/tests/services/test_catalog_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/services/test_catalog_item.py -------------------------------------------------------------------------------- /cfme/tests/services/test_myservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/services/test_myservice.py -------------------------------------------------------------------------------- /cfme/tests/services/test_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/services/test_operations.py -------------------------------------------------------------------------------- /cfme/tests/services/test_provision_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/services/test_provision_stack.py -------------------------------------------------------------------------------- /cfme/tests/services/test_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/services/test_request.py -------------------------------------------------------------------------------- /cfme/tests/services/test_rest_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/services/test_rest_services.py -------------------------------------------------------------------------------- /cfme/tests/services/test_service_rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/services/test_service_rbac.py -------------------------------------------------------------------------------- /cfme/tests/services/test_tower_manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/services/test_tower_manual.py -------------------------------------------------------------------------------- /cfme/tests/ssui/test_ssui_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/ssui/test_ssui_dashboard.py -------------------------------------------------------------------------------- /cfme/tests/ssui/test_ssui_myservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/ssui/test_ssui_myservice.py -------------------------------------------------------------------------------- /cfme/tests/ssui/test_ssui_service_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/ssui/test_ssui_service_dialog.py -------------------------------------------------------------------------------- /cfme/tests/ssui/test_ssui_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/ssui/test_ssui_tags.py -------------------------------------------------------------------------------- /cfme/tests/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/tests/storage/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/storage/test_manager.py -------------------------------------------------------------------------------- /cfme/tests/storage/test_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/storage/test_volume.py -------------------------------------------------------------------------------- /cfme/tests/storage/test_volume_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/storage/test_volume_backup.py -------------------------------------------------------------------------------- /cfme/tests/storage/test_volume_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/storage/test_volume_snapshot.py -------------------------------------------------------------------------------- /cfme/tests/storage/test_volume_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/storage/test_volume_types.py -------------------------------------------------------------------------------- /cfme/tests/test_appliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/test_appliance.py -------------------------------------------------------------------------------- /cfme/tests/test_csrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/test_csrf.py -------------------------------------------------------------------------------- /cfme/tests/test_db_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/test_db_migrate.py -------------------------------------------------------------------------------- /cfme/tests/test_db_migrate_manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/test_db_migrate_manual.py -------------------------------------------------------------------------------- /cfme/tests/test_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/test_login.py -------------------------------------------------------------------------------- /cfme/tests/test_manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/test_manual.py -------------------------------------------------------------------------------- /cfme/tests/test_modules_importable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/test_modules_importable.py -------------------------------------------------------------------------------- /cfme/tests/test_providerless_rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/test_providerless_rest.py -------------------------------------------------------------------------------- /cfme/tests/test_replication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/test_replication.py -------------------------------------------------------------------------------- /cfme/tests/test_rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/test_rest.py -------------------------------------------------------------------------------- /cfme/tests/test_rest_manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/test_rest_manual.py -------------------------------------------------------------------------------- /cfme/tests/test_server_manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/test_server_manual.py -------------------------------------------------------------------------------- /cfme/tests/test_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/test_ui.py -------------------------------------------------------------------------------- /cfme/tests/test_utilization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/test_utilization.py -------------------------------------------------------------------------------- /cfme/tests/v2v/test_conversion_host_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/v2v/test_conversion_host_ui.py -------------------------------------------------------------------------------- /cfme/tests/v2v/test_csv_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/v2v/test_csv_import.py -------------------------------------------------------------------------------- /cfme/tests/v2v/test_post_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/v2v/test_post_migrations.py -------------------------------------------------------------------------------- /cfme/tests/v2v/test_rest_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/v2v/test_rest_migrations.py -------------------------------------------------------------------------------- /cfme/tests/v2v/test_v2v_ansible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/v2v/test_v2v_ansible.py -------------------------------------------------------------------------------- /cfme/tests/v2v/test_v2v_manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/v2v/test_v2v_manual.py -------------------------------------------------------------------------------- /cfme/tests/v2v/test_v2v_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/v2v/test_v2v_migrations.py -------------------------------------------------------------------------------- /cfme/tests/v2v/test_v2v_migrations_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/v2v/test_v2v_migrations_ui.py -------------------------------------------------------------------------------- /cfme/tests/v2v/test_v2v_smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/v2v/test_v2v_smoke.py -------------------------------------------------------------------------------- /cfme/tests/webui/test_advanced_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/webui/test_advanced_search.py -------------------------------------------------------------------------------- /cfme/tests/webui/test_general_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/webui/test_general_ui.py -------------------------------------------------------------------------------- /cfme/tests/webui/test_rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/webui/test_rest.py -------------------------------------------------------------------------------- /cfme/tests/webui/test_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/tests/webui/test_splitter.py -------------------------------------------------------------------------------- /cfme/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/__init__.py -------------------------------------------------------------------------------- /cfme/utils/ansible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/ansible.py -------------------------------------------------------------------------------- /cfme/utils/apidoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/apidoc.py -------------------------------------------------------------------------------- /cfme/utils/appliance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/appliance/__init__.py -------------------------------------------------------------------------------- /cfme/utils/appliance/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/appliance/console.py -------------------------------------------------------------------------------- /cfme/utils/appliance/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/appliance/constants.py -------------------------------------------------------------------------------- /cfme/utils/appliance/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/appliance/db.py -------------------------------------------------------------------------------- /cfme/utils/appliance/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/appliance/plugin.py -------------------------------------------------------------------------------- /cfme/utils/appliance/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/appliance/services.py -------------------------------------------------------------------------------- /cfme/utils/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/auth/__init__.py -------------------------------------------------------------------------------- /cfme/utils/blockers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/blockers.py -------------------------------------------------------------------------------- /cfme/utils/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/browser.py -------------------------------------------------------------------------------- /cfme/utils/bz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/bz.py -------------------------------------------------------------------------------- /cfme/utils/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/category.py -------------------------------------------------------------------------------- /cfme/utils/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/conf.py -------------------------------------------------------------------------------- /cfme/utils/datafile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/datafile.py -------------------------------------------------------------------------------- /cfme/utils/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/db.py -------------------------------------------------------------------------------- /cfme/utils/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/deprecation.py -------------------------------------------------------------------------------- /cfme/utils/dockerbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/dockerbot/README.md -------------------------------------------------------------------------------- /cfme/utils/dockerbot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/utils/dockerbot/build_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/dockerbot/build_container.py -------------------------------------------------------------------------------- /cfme/utils/dockerbot/check_prs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/dockerbot/check_prs.py -------------------------------------------------------------------------------- /cfme/utils/dockerbot/dockerbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/dockerbot/dockerbot.py -------------------------------------------------------------------------------- /cfme/utils/dockerbot/pytestbase/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/utils/dockerbot/pytestbase/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/dockerbot/pytestbase/setup.sh -------------------------------------------------------------------------------- /cfme/utils/dockerbot/sel_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/dockerbot/sel_container.py -------------------------------------------------------------------------------- /cfme/utils/error.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/utils/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/events.py -------------------------------------------------------------------------------- /cfme/utils/events_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/events_db.py -------------------------------------------------------------------------------- /cfme/utils/ftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/ftp.py -------------------------------------------------------------------------------- /cfme/utils/generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/generators.py -------------------------------------------------------------------------------- /cfme/utils/grafana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/grafana.py -------------------------------------------------------------------------------- /cfme/utils/ipmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/ipmi.py -------------------------------------------------------------------------------- /cfme/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/log.py -------------------------------------------------------------------------------- /cfme/utils/log_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/log_validator.py -------------------------------------------------------------------------------- /cfme/utils/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/net.py -------------------------------------------------------------------------------- /cfme/utils/ocp_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/ocp_cli.py -------------------------------------------------------------------------------- /cfme/utils/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/path.py -------------------------------------------------------------------------------- /cfme/utils/perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/perf.py -------------------------------------------------------------------------------- /cfme/utils/perf_message_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/perf_message_stats.py -------------------------------------------------------------------------------- /cfme/utils/ports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/ports.py -------------------------------------------------------------------------------- /cfme/utils/pretty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/pretty.py -------------------------------------------------------------------------------- /cfme/utils/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/providers.py -------------------------------------------------------------------------------- /cfme/utils/pytest_shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/pytest_shortcuts.py -------------------------------------------------------------------------------- /cfme/utils/quote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/quote.py -------------------------------------------------------------------------------- /cfme/utils/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/rest.py -------------------------------------------------------------------------------- /cfme/utils/smem_memory_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/smem_memory_monitor.py -------------------------------------------------------------------------------- /cfme/utils/smtp_collector_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/smtp_collector_client.py -------------------------------------------------------------------------------- /cfme/utils/soft_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/soft_get.py -------------------------------------------------------------------------------- /cfme/utils/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/ssh.py -------------------------------------------------------------------------------- /cfme/utils/ssh_expect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/ssh_expect.py -------------------------------------------------------------------------------- /cfme/utils/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/stats.py -------------------------------------------------------------------------------- /cfme/utils/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/template/README.md -------------------------------------------------------------------------------- /cfme/utils/template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/utils/template/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/template/base.py -------------------------------------------------------------------------------- /cfme/utils/template/ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/template/ec2.py -------------------------------------------------------------------------------- /cfme/utils/template/gce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/template/gce.py -------------------------------------------------------------------------------- /cfme/utils/template/openstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/template/openstack.py -------------------------------------------------------------------------------- /cfme/utils/template/rhevm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/template/rhevm.py -------------------------------------------------------------------------------- /cfme/utils/template/rhopenshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/template/rhopenshift.py -------------------------------------------------------------------------------- /cfme/utils/template/scvmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/template/scvmm.py -------------------------------------------------------------------------------- /cfme/utils/template/template_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/template/template_upload.py -------------------------------------------------------------------------------- /cfme/utils/template/virtualcenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/template/virtualcenter.py -------------------------------------------------------------------------------- /cfme/utils/testgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/testgen.py -------------------------------------------------------------------------------- /cfme/utils/tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/tests/README -------------------------------------------------------------------------------- /cfme/utils/tests/test_connect_ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/tests/test_connect_ssh.py -------------------------------------------------------------------------------- /cfme/utils/tests/test_ipappliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/tests/test_ipappliance.py -------------------------------------------------------------------------------- /cfme/utils/tests/test_metadoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/tests/test_metadoc.py -------------------------------------------------------------------------------- /cfme/utils/tests/test_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/tests/test_providers.py -------------------------------------------------------------------------------- /cfme/utils/tests/test_safe_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/tests/test_safe_string.py -------------------------------------------------------------------------------- /cfme/utils/tests/test_simple_locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/tests/test_simple_locators.py -------------------------------------------------------------------------------- /cfme/utils/tests/test_soft_assert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/tests/test_soft_assert.py -------------------------------------------------------------------------------- /cfme/utils/tests/test_soft_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/tests/test_soft_get.py -------------------------------------------------------------------------------- /cfme/utils/tests/test_ssh_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/tests/test_ssh_client.py -------------------------------------------------------------------------------- /cfme/utils/tests/test_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/tests/test_units.py -------------------------------------------------------------------------------- /cfme/utils/tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/tests/test_version.py -------------------------------------------------------------------------------- /cfme/utils/timeutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/timeutil.py -------------------------------------------------------------------------------- /cfme/utils/tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/tracer.py -------------------------------------------------------------------------------- /cfme/utils/trackerbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/trackerbot.py -------------------------------------------------------------------------------- /cfme/utils/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/units.py -------------------------------------------------------------------------------- /cfme/utils/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/update.py -------------------------------------------------------------------------------- /cfme/utils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/version.py -------------------------------------------------------------------------------- /cfme/utils/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/video.py -------------------------------------------------------------------------------- /cfme/utils/virtual_machines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/virtual_machines.py -------------------------------------------------------------------------------- /cfme/utils/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/wait.py -------------------------------------------------------------------------------- /cfme/utils/workloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/utils/workloads.py -------------------------------------------------------------------------------- /cfme/v2v/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfme/v2v/infrastructure_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/v2v/infrastructure_mapping.py -------------------------------------------------------------------------------- /cfme/v2v/migration_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/v2v/migration_plans.py -------------------------------------------------------------------------------- /cfme/v2v/migration_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme/v2v/migration_settings.py -------------------------------------------------------------------------------- /cfme_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/cfme_test.sh -------------------------------------------------------------------------------- /conf/cfme_data.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/conf/cfme_data.yaml.template -------------------------------------------------------------------------------- /conf/credentials.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/conf/credentials.yaml.template -------------------------------------------------------------------------------- /conf/docker.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/conf/docker.yaml.template -------------------------------------------------------------------------------- /conf/env.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/conf/env.yaml.template -------------------------------------------------------------------------------- /conf/perf_tests.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/conf/perf_tests.yaml.template -------------------------------------------------------------------------------- /conf/polarion_tools.local.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/conf/polarion_tools.local.yaml.template -------------------------------------------------------------------------------- /conf/polarion_tools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/conf/polarion_tools.yaml -------------------------------------------------------------------------------- /conf/polarion_tools.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/conf/polarion_tools.yaml.template -------------------------------------------------------------------------------- /conf/supportability.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/conf/supportability.yaml -------------------------------------------------------------------------------- /conf/supportability.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/conf/supportability.yaml.template -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/conftest.py -------------------------------------------------------------------------------- /data/az_pwsh_cloudinit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/az_pwsh_cloudinit.cfg -------------------------------------------------------------------------------- /data/basiccloudinit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/basiccloudinit.cfg -------------------------------------------------------------------------------- /data/cfme/utils/test_datafile_fixture/test_template: -------------------------------------------------------------------------------- 1 | $replaceme -------------------------------------------------------------------------------- /data/cli/QECliTesting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/cli/QECliTesting.yaml -------------------------------------------------------------------------------- /data/firefox_profile.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/firefox_profile.js.template -------------------------------------------------------------------------------- /data/orchestration/aws_vm_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/orchestration/aws_vm_template.json -------------------------------------------------------------------------------- /data/orchestration/aws_vm_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/orchestration/aws_vm_template.yaml -------------------------------------------------------------------------------- /data/patches/autofocus.js.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/patches/autofocus.js.diff -------------------------------------------------------------------------------- /data/patches/autofocus_57.js.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/patches/autofocus_57.js.diff -------------------------------------------------------------------------------- /data/patches/miq_application.js.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/patches/miq_application.js.diff -------------------------------------------------------------------------------- /data/patches/ovirt_gem.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/patches/ovirt_gem.patch -------------------------------------------------------------------------------- /data/qe_event_handler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/qe_event_handler.xml -------------------------------------------------------------------------------- /data/reports_crud/basic01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/reports_crud/basic01.yaml -------------------------------------------------------------------------------- /data/rhel6-iso.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/rhel6-iso.cfg -------------------------------------------------------------------------------- /data/rhel6.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/rhel6.cfg -------------------------------------------------------------------------------- /data/rhel7.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/rhel7.cfg -------------------------------------------------------------------------------- /data/rhel8.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/rhel8.cfg -------------------------------------------------------------------------------- /data/rootpass.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/rootpass.cfg -------------------------------------------------------------------------------- /data/schedules_crud/basic01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/schedules_crud/basic01.yaml -------------------------------------------------------------------------------- /data/suite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/suite.yaml -------------------------------------------------------------------------------- /data/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/base.html -------------------------------------------------------------------------------- /data/templates/dist/css/patternfly.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/dist/css/patternfly.css -------------------------------------------------------------------------------- /data/templates/dist/img/brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/dist/img/brand.svg -------------------------------------------------------------------------------- /data/templates/dist/img/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/dist/img/console.png -------------------------------------------------------------------------------- /data/templates/dist/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/dist/img/favicon.ico -------------------------------------------------------------------------------- /data/templates/dist/img/spinner-lg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/dist/img/spinner-lg.gif -------------------------------------------------------------------------------- /data/templates/dist/img/spinner-sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/dist/img/spinner-sm.gif -------------------------------------------------------------------------------- /data/templates/dist/img/spinner-xs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/dist/img/spinner-xs.gif -------------------------------------------------------------------------------- /data/templates/dist/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/dist/img/spinner.gif -------------------------------------------------------------------------------- /data/templates/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /data/templates/dist/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/dist/js/html5shiv.min.js -------------------------------------------------------------------------------- /data/templates/dist/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/dist/js/jquery.min.js -------------------------------------------------------------------------------- /data/templates/dist/js/patternfly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/dist/js/patternfly.min.js -------------------------------------------------------------------------------- /data/templates/dist/jstree.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/dist/jstree.min.js -------------------------------------------------------------------------------- /data/templates/dist/libs/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/dist/libs/jquery.js -------------------------------------------------------------------------------- /data/templates/dist/libs/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/dist/libs/require.js -------------------------------------------------------------------------------- /data/templates/event_testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/event_testing.html -------------------------------------------------------------------------------- /data/templates/failed_browser_tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/failed_browser_tests.html -------------------------------------------------------------------------------- /data/templates/jenkins_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/jenkins_report.html -------------------------------------------------------------------------------- /data/templates/pattern_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/pattern_base.html -------------------------------------------------------------------------------- /data/templates/smtp_result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/smtp_result.html -------------------------------------------------------------------------------- /data/templates/test_matrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/test_matrix.html -------------------------------------------------------------------------------- /data/templates/test_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/test_report.html -------------------------------------------------------------------------------- /data/templates/test_report_provider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/test_report_provider.html -------------------------------------------------------------------------------- /data/templates/usage_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/templates/usage_report.html -------------------------------------------------------------------------------- /data/ui/automate/ds2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/ui/automate/ds2.xml -------------------------------------------------------------------------------- /data/ui/control/default_alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/ui/control/default_alerts.yaml -------------------------------------------------------------------------------- /data/ui/control/invalid.yaml: -------------------------------------------------------------------------------- 1 | Invalid yaml -------------------------------------------------------------------------------- /data/ui/control/policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/ui/control/policies.yaml -------------------------------------------------------------------------------- /data/ui/intelligence/import_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/ui/intelligence/import_report.yaml -------------------------------------------------------------------------------- /data/ui/intelligence/import_widget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/ui/intelligence/import_widget.yaml -------------------------------------------------------------------------------- /data/utils/cfmedb_load_config.rbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/utils/cfmedb_load_config.rbt -------------------------------------------------------------------------------- /data/utils/cfmedb_set_config.rbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/utils/cfmedb_set_config.rbt -------------------------------------------------------------------------------- /data/vmware_esx_55_remote.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/data/vmware_esx_55_remote.cfg -------------------------------------------------------------------------------- /dockerfiles/cfme_tests_base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/dockerfiles/cfme_tests_base/Dockerfile -------------------------------------------------------------------------------- /dockerfiles/cfme_tests_img/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/dockerfiles/cfme_tests_img/Dockerfile -------------------------------------------------------------------------------- /dockerfiles/cfme_tests_img/xstartup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/dockerfiles/cfme_tests_img/xstartup -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_static/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/_static/framework.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/getting_started.rst -------------------------------------------------------------------------------- /docs/guides.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/guides.rst -------------------------------------------------------------------------------- /docs/guides/abbrev.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/guides/abbrev.rst -------------------------------------------------------------------------------- /docs/guides/browser_configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/guides/browser_configuration.rst -------------------------------------------------------------------------------- /docs/guides/bugzilla.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/guides/bugzilla.rst -------------------------------------------------------------------------------- /docs/guides/collections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/guides/collections.rst -------------------------------------------------------------------------------- /docs/guides/container.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/guides/container.rst -------------------------------------------------------------------------------- /docs/guides/debugging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/guides/debugging.rst -------------------------------------------------------------------------------- /docs/guides/dev_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/guides/dev_guide.rst -------------------------------------------------------------------------------- /docs/guides/documenting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/guides/documenting.rst -------------------------------------------------------------------------------- /docs/guides/editors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/guides/editors.rst -------------------------------------------------------------------------------- /docs/guides/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/guides/faq.rst -------------------------------------------------------------------------------- /docs/guides/gotchas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/guides/gotchas.rst -------------------------------------------------------------------------------- /docs/guides/lint.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/guides/lint.rst -------------------------------------------------------------------------------- /docs/guides/newprovider.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/guides/newprovider.rst -------------------------------------------------------------------------------- /docs/guides/tipsntricks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/guides/tipsntricks.rst -------------------------------------------------------------------------------- /docs/guides/ui_modeling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/guides/ui_modeling.rst -------------------------------------------------------------------------------- /docs/guides/vnc_selenium.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/guides/vnc_selenium.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/inventory.py -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/pr_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/docs/pr_process.png -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | # temporary backward compat 2 | -r ../requirements/docs.txt 3 | -------------------------------------------------------------------------------- /eng.user-words: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/eng.user-words -------------------------------------------------------------------------------- /entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/entry_points.txt -------------------------------------------------------------------------------- /log/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/BasicApplianceSetup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/notebooks/BasicApplianceSetup.ipynb -------------------------------------------------------------------------------- /notebooks/Browser Session.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/notebooks/Browser Session.ipynb -------------------------------------------------------------------------------- /notebooks/MultiProcessing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/notebooks/MultiProcessing.ipynb -------------------------------------------------------------------------------- /notebooks/SSUI Login.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/notebooks/SSUI Login.ipynb -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements/.gitignore: -------------------------------------------------------------------------------- 1 | temporary_venv 2 | -------------------------------------------------------------------------------- /requirements/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/requirements/__init__.py -------------------------------------------------------------------------------- /requirements/constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/requirements/constraints.txt -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/requirements/docs.txt -------------------------------------------------------------------------------- /requirements/docs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/requirements/docs/readme.txt -------------------------------------------------------------------------------- /requirements/frozen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/requirements/frozen.txt -------------------------------------------------------------------------------- /requirements/frozen_docs.py3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/requirements/frozen_docs.py3.txt -------------------------------------------------------------------------------- /requirements/on_rtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/requirements/on_rtd.txt -------------------------------------------------------------------------------- /requirements/package_map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/requirements/package_map.yaml -------------------------------------------------------------------------------- /requirements/perf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/requirements/perf.txt -------------------------------------------------------------------------------- /requirements/quickstart/needs.txt: -------------------------------------------------------------------------------- 1 | distro==1.0.4 2 | -------------------------------------------------------------------------------- /requirements/template_docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/requirements/template_docs.txt -------------------------------------------------------------------------------- /requirements/template_non_imported.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/requirements/template_non_imported.txt -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/apishow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/apishow.py -------------------------------------------------------------------------------- /scripts/azure_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/azure_cleanup.py -------------------------------------------------------------------------------- /scripts/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/browser.py -------------------------------------------------------------------------------- /scripts/clean_appliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/clean_appliance.py -------------------------------------------------------------------------------- /scripts/cleanup_edomain_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/cleanup_edomain_templates.py -------------------------------------------------------------------------------- /scripts/cleanup_old_vms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/cleanup_old_vms.py -------------------------------------------------------------------------------- /scripts/cleanup_openstack_fips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/cleanup_openstack_fips.py -------------------------------------------------------------------------------- /scripts/cleanup_openstack_volumes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/cleanup_openstack_volumes.py -------------------------------------------------------------------------------- /scripts/clone_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/clone_domain.py -------------------------------------------------------------------------------- /scripts/clone_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/clone_template.py -------------------------------------------------------------------------------- /scripts/coverage_report_jenkins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/coverage_report_jenkins.py -------------------------------------------------------------------------------- /scripts/coverage_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/coverage_result.py -------------------------------------------------------------------------------- /scripts/create_cu_vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/create_cu_vm.py -------------------------------------------------------------------------------- /scripts/data/coverage/coverage_gem.rb: -------------------------------------------------------------------------------- 1 | # goes into vmdb/bundler.d/ 2 | gem 'simplecov' 3 | -------------------------------------------------------------------------------- /scripts/data/coverage/coverage_hook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/data/coverage/coverage_hook.rb -------------------------------------------------------------------------------- /scripts/data/coverage/coverage_merger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/data/coverage/coverage_merger.rb -------------------------------------------------------------------------------- /scripts/data/enable-internal-db.rbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/data/enable-internal-db.rbt -------------------------------------------------------------------------------- /scripts/ec2cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/ec2cleanup.py -------------------------------------------------------------------------------- /scripts/enable_external_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/enable_external_db.py -------------------------------------------------------------------------------- /scripts/enable_internal_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/enable_internal_db.py -------------------------------------------------------------------------------- /scripts/encrypt_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/encrypt_conf.py -------------------------------------------------------------------------------- /scripts/fetch_jenkins_artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/fetch_jenkins_artifacts.py -------------------------------------------------------------------------------- /scripts/gen_ssl_cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/gen_ssl_cert.py -------------------------------------------------------------------------------- /scripts/get_unregistered_vmware_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/get_unregistered_vmware_files.py -------------------------------------------------------------------------------- /scripts/gh-find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/gh-find.py -------------------------------------------------------------------------------- /scripts/harden_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/harden_security.py -------------------------------------------------------------------------------- /scripts/image_upload_glance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/image_upload_glance.py -------------------------------------------------------------------------------- /scripts/install_netapp_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/install_netapp_lib.py -------------------------------------------------------------------------------- /scripts/install_snmp_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/install_snmp_listener.py -------------------------------------------------------------------------------- /scripts/install_vddk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/install_vddk.py -------------------------------------------------------------------------------- /scripts/jenkins_failure_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/jenkins_failure_analysis.py -------------------------------------------------------------------------------- /scripts/jsongut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/jsongut.py -------------------------------------------------------------------------------- /scripts/list_provider_vms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/list_provider_vms.py -------------------------------------------------------------------------------- /scripts/list_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/list_tests.py -------------------------------------------------------------------------------- /scripts/loosen_pgssl_connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/loosen_pgssl_connections.py -------------------------------------------------------------------------------- /scripts/mappings/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/mappings/metadata.json -------------------------------------------------------------------------------- /scripts/mappings/smem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/mappings/smem.json -------------------------------------------------------------------------------- /scripts/matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/matrix.py -------------------------------------------------------------------------------- /scripts/ocp_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/ocp_cleanup.py -------------------------------------------------------------------------------- /scripts/openshift/create_ip_aliases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/openshift/create_ip_aliases.sh -------------------------------------------------------------------------------- /scripts/perf_collect_logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/perf_collect_logs.sh -------------------------------------------------------------------------------- /scripts/post_jenkins_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/post_jenkins_result.py -------------------------------------------------------------------------------- /scripts/precompile_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/precompile_assets.py -------------------------------------------------------------------------------- /scripts/print_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/print_tables.py -------------------------------------------------------------------------------- /scripts/provider_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/provider_usage.py -------------------------------------------------------------------------------- /scripts/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/providers.py -------------------------------------------------------------------------------- /scripts/record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/record.py -------------------------------------------------------------------------------- /scripts/refactoring/checkallimports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/refactoring/checkallimports.py -------------------------------------------------------------------------------- /scripts/refactoring/provider_move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/refactoring/provider_move.py -------------------------------------------------------------------------------- /scripts/refactoring/utils_move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/refactoring/utils_move.py -------------------------------------------------------------------------------- /scripts/restore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/restore.py -------------------------------------------------------------------------------- /scripts/scap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/scap.rb -------------------------------------------------------------------------------- /scripts/smtp_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/smtp_collector.py -------------------------------------------------------------------------------- /scripts/sprout-cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/sprout-cli.py -------------------------------------------------------------------------------- /scripts/sync_template_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/sync_template_tracker.py -------------------------------------------------------------------------------- /scripts/template_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/template_tester.py -------------------------------------------------------------------------------- /scripts/templates/cfme-run.smem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/templates/cfme-run.smem -------------------------------------------------------------------------------- /scripts/templates/cfme-run.summary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/templates/cfme-run.summary -------------------------------------------------------------------------------- /scripts/update_rhel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/update_rhel.py -------------------------------------------------------------------------------- /scripts/update_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/update_template.sh -------------------------------------------------------------------------------- /scripts/utility-vm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/utility-vm/Makefile -------------------------------------------------------------------------------- /scripts/utility-vm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/utility-vm/README -------------------------------------------------------------------------------- /scripts/utility-vm/meta-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/utility-vm/meta-data -------------------------------------------------------------------------------- /scripts/utility-vm/rhel7.repo.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/utility-vm/rhel7.repo.template -------------------------------------------------------------------------------- /scripts/utility-vm/rhel8.repo.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/utility-vm/rhel8.repo.template -------------------------------------------------------------------------------- /scripts/utility-vm/user-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/utility-vm/user-data.yaml -------------------------------------------------------------------------------- /scripts/wait_for_appliance_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/scripts/wait_for_appliance_ui.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/setup.py -------------------------------------------------------------------------------- /sprout/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/.gitignore -------------------------------------------------------------------------------- /sprout/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/README.rst -------------------------------------------------------------------------------- /sprout/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sprout/appliances/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sprout/appliances/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/appliances/admin.py -------------------------------------------------------------------------------- /sprout/appliances/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/appliances/api.py -------------------------------------------------------------------------------- /sprout/appliances/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/appliances/context_processors.py -------------------------------------------------------------------------------- /sprout/appliances/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sprout/appliances/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/appliances/models.py -------------------------------------------------------------------------------- /sprout/appliances/static/app-js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/appliances/static/app-js/base.js -------------------------------------------------------------------------------- /sprout/appliances/static/css: -------------------------------------------------------------------------------- 1 | ../../../data/templates/dist/css -------------------------------------------------------------------------------- /sprout/appliances/static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/appliances/static/custom.css -------------------------------------------------------------------------------- /sprout/appliances/static/fonts: -------------------------------------------------------------------------------- 1 | ../../../data/templates/dist/fonts -------------------------------------------------------------------------------- /sprout/appliances/static/img: -------------------------------------------------------------------------------- 1 | ../../../data/templates/dist/img -------------------------------------------------------------------------------- /sprout/appliances/static/js: -------------------------------------------------------------------------------- 1 | ../../../data/templates/dist/js -------------------------------------------------------------------------------- /sprout/appliances/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/appliances/tasks/__init__.py -------------------------------------------------------------------------------- /sprout/appliances/tasks/maintainance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/appliances/tasks/maintainance.py -------------------------------------------------------------------------------- /sprout/appliances/tasks/provisioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/appliances/tasks/provisioning.py -------------------------------------------------------------------------------- /sprout/appliances/tasks/service_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/appliances/tasks/service_ops.py -------------------------------------------------------------------------------- /sprout/appliances/tasks/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/appliances/tasks/template.py -------------------------------------------------------------------------------- /sprout/appliances/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/appliances/templates/base.html -------------------------------------------------------------------------------- /sprout/appliances/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/appliances/templates/index.html -------------------------------------------------------------------------------- /sprout/appliances/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/appliances/templates/login.html -------------------------------------------------------------------------------- /sprout/appliances/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sprout/appliances/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/appliances/tests.py -------------------------------------------------------------------------------- /sprout/appliances/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/appliances/urls.py -------------------------------------------------------------------------------- /sprout/appliances/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/appliances/views.py -------------------------------------------------------------------------------- /sprout/celery_runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/celery_runner -------------------------------------------------------------------------------- /sprout/dockerfiles/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/dockerfiles/Dockerfile -------------------------------------------------------------------------------- /sprout/logserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/logserver.py -------------------------------------------------------------------------------- /sprout/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/manage.py -------------------------------------------------------------------------------- /sprout/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/requirements.txt -------------------------------------------------------------------------------- /sprout/sprout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/sprout.sh -------------------------------------------------------------------------------- /sprout/sprout/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/sprout/__init__.py -------------------------------------------------------------------------------- /sprout/sprout/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/sprout/celery.py -------------------------------------------------------------------------------- /sprout/sprout/irc_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/sprout/irc_bot.py -------------------------------------------------------------------------------- /sprout/sprout/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/sprout/log.py -------------------------------------------------------------------------------- /sprout/sprout/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/sprout/settings.py -------------------------------------------------------------------------------- /sprout/sprout/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/sprout/urls.py -------------------------------------------------------------------------------- /sprout/sprout/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/sprout/sprout/wsgi.py -------------------------------------------------------------------------------- /widgetastic_manageiq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/widgetastic_manageiq/__init__.py -------------------------------------------------------------------------------- /widgetastic_manageiq/vm_reconfigure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManageIQ/integration_tests/HEAD/widgetastic_manageiq/vm_reconfigure.py --------------------------------------------------------------------------------