├── .env.example ├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md ├── auto_assign.yml ├── dependabot.yml ├── dependency_tests.yaml └── workflows │ ├── auto_assignment.yaml │ ├── auto_branching.yml │ ├── auto_cherry_pick.yml │ ├── auto_cherry_pick_merge.yaml │ ├── auto_cherry_pick_merged.yaml │ ├── dependency_merge.yml │ ├── dependency_merge_zstream.yml │ ├── dispatch_release.yml │ ├── prt_labels.yml │ ├── prt_result.yml │ ├── pull_request.yml │ ├── required_labels.yml │ ├── stale.yml │ ├── update_robottelo_image.yml │ └── weekly.yml ├── .gitignore ├── .pre-commit-config.yaml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.rst ├── conf ├── ansible.yaml.template ├── ansible_hub.yaml.template ├── azure.yaml.template ├── broker.yaml.template ├── capsule.yaml.template ├── clone.yaml.template ├── container.yaml.template ├── container_repo.yaml.template ├── content_host.yaml.template ├── docker.yaml.template ├── dynaconf_hooks.py ├── ec2.yaml.template ├── fake_capsules.yaml.template ├── fam.yaml.template ├── flavors.yaml.template ├── gce.yaml.template ├── git.yaml.template ├── github_repos.yaml.template ├── http_proxy.yaml.template ├── infoblox.yaml.template ├── ipa.yaml.template ├── jira.yaml.template ├── ldap.yaml.template ├── libvirt.yaml.template ├── manifest.yaml.template ├── mcp.yaml.template ├── migrations.py ├── ohsnap.yaml.template ├── openldap.yaml.template ├── oscap.yaml.template ├── osp.yaml.template ├── performance.yaml.template ├── provisioning.yaml.template ├── remotedb.yaml.template ├── report_portal.yaml.template ├── repos.yaml.template ├── rh_cloud.yaml.template ├── rhbk.yaml.template ├── rhev.yaml.template ├── rhsso.yaml.template ├── robottelo.yaml.template ├── server.yaml.template ├── shared_function.yaml.template ├── subscription.yaml.template ├── supportability.yaml ├── ui.yaml.template ├── upgrade.yaml.template ├── virtwho.yaml.template └── vmware.yaml.template ├── conftest.py ├── docs ├── Makefile ├── code_standards.rst ├── committing.rst ├── conf.py ├── features │ ├── commands.rst │ ├── decorators.rst │ ├── index.rst │ └── ssh.rst ├── index.rst └── reviewing_PRs.rst ├── logging.yaml ├── manage.yml ├── pyproject.toml ├── pytest_fixtures ├── component │ ├── acs.py │ ├── activationkey.py │ ├── ansible.py │ ├── architecture.py │ ├── computeprofile.py │ ├── contentview.py │ ├── discovery.py │ ├── domain.py │ ├── flatpak.py │ ├── global_params.py │ ├── host.py │ ├── hostgroup.py │ ├── http_proxy.py │ ├── katello_certs_check.py │ ├── lce.py │ ├── leapp_client.py │ ├── maintain.py │ ├── mcp.py │ ├── os.py │ ├── oscap.py │ ├── partition_table.py │ ├── permissions.py │ ├── provision_azure.py │ ├── provision_capsule_pxe.py │ ├── provision_gce.py │ ├── provision_libvirt.py │ ├── provision_pxe.py │ ├── provision_vmware.py │ ├── provisioning_template.py │ ├── pulp.py │ ├── puppet.py │ ├── repository.py │ ├── rh_cloud.py │ ├── satellite_auth.py │ ├── settings.py │ ├── smartproxy.py │ ├── subnet.py │ ├── subscription.py │ ├── taxonomy.py │ ├── templatesync.py │ ├── usage_report.py │ ├── user.py │ ├── user_role.py │ └── virtwho_config.py └── core │ ├── broker.py │ ├── contenthosts.py │ ├── reporting.py │ ├── sat_cap_factory.py │ ├── sys.py │ ├── ui.py │ ├── upgrade.py │ └── xdist.py ├── pytest_plugins ├── auto_vault.py ├── capsule_n-minus.py ├── disable_rp_params.py ├── external_logging.py ├── factory_collection.py ├── fixture_markers.py ├── fspath_plugins.py ├── infra_dependent_markers.py ├── issue_handlers.py ├── jira_comments.py ├── logging_hooks.py ├── manual_skipped.py ├── marker_deselection.py ├── markers.py ├── metadata_markers.py ├── requirements │ ├── req_updater.py │ └── update_requirements.py ├── rerun_rp │ ├── README.adoc │ └── rerun_rp.py ├── sanity_plugin.py ├── select_random_tests.py ├── settings_skip.py ├── upstream_pr.py └── video_cleanup.py ├── requirements-optional.txt ├── requirements.txt ├── robottelo.yaml.sample ├── robottelo ├── __init__.py ├── cli │ ├── __init__.py │ ├── acs.py │ ├── activationkey.py │ ├── admin.py │ ├── ansible.py │ ├── architecture.py │ ├── arfreport.py │ ├── auth.py │ ├── base.py │ ├── bootdisk.py │ ├── capsule.py │ ├── computeprofile.py │ ├── computeresource.py │ ├── content_credentials.py │ ├── content_export.py │ ├── content_import.py │ ├── contentview.py │ ├── defaults.py │ ├── discoveredhost.py │ ├── discoveryrule.py │ ├── docker.py │ ├── domain.py │ ├── environment.py │ ├── erratum.py │ ├── fact.py │ ├── file.py │ ├── filter.py │ ├── flatpak_remote.py │ ├── globalparam.py │ ├── gpgkey.py │ ├── hammer.py │ ├── host.py │ ├── host_registration.py │ ├── hostcollection.py │ ├── hostgroup.py │ ├── http_proxy.py │ ├── insights.py │ ├── job_invocation.py │ ├── job_template.py │ ├── ldapauthsource.py │ ├── lifecycleenvironment.py │ ├── location.py │ ├── medium.py │ ├── model.py │ ├── module_stream.py │ ├── operatingsys.py │ ├── org.py │ ├── ostreebranch.py │ ├── package.py │ ├── partitiontable.py │ ├── product.py │ ├── proxy.py │ ├── puppet.py │ ├── realm.py │ ├── recurring_logic.py │ ├── report.py │ ├── report_template.py │ ├── repository.py │ ├── repository_set.py │ ├── rex_feature.py │ ├── role.py │ ├── scap_policy.py │ ├── scap_tailoring_files.py │ ├── scapcontent.py │ ├── scparams.py │ ├── settings.py │ ├── sm_advanced.py │ ├── sm_advanced_by_tag.py │ ├── sm_backup.py │ ├── sm_health.py │ ├── sm_maintenance_mode.py │ ├── sm_packages.py │ ├── sm_report.py │ ├── sm_restore.py │ ├── sm_service.py │ ├── sm_update.py │ ├── sm_upgrade.py │ ├── srpm.py │ ├── subnet.py │ ├── subscription.py │ ├── syncplan.py │ ├── task.py │ ├── template.py │ ├── template_input.py │ ├── template_sync.py │ ├── user.py │ ├── usergroup.py │ ├── virt_who_config.py │ └── webhook.py ├── config │ ├── __init__.py │ └── validators.py ├── constants │ ├── __init__.py │ └── repos.py ├── content_info.py ├── enums.py ├── exceptions.py ├── host_helpers │ ├── __init__.py │ ├── api_factory.py │ ├── capsule_mixins.py │ ├── cli_factory.py │ ├── contenthost_mixins.py │ ├── repository_mixins.py │ ├── satellite_mixins.py │ └── ui_factory.py ├── hosts.py ├── logging.py ├── ssh.py └── utils │ ├── __init__.py │ ├── datafactory.py │ ├── decorators │ ├── __init__.py │ ├── func_locker.py │ └── func_shared │ │ ├── __init__.py │ │ ├── base.py │ │ ├── file_storage.py │ │ ├── redis_storage.py │ │ └── shared.py │ ├── installer.py │ ├── io │ └── __init__.py │ ├── issue_handlers │ ├── __init__.py │ └── jira.py │ ├── ohsnap.py │ ├── report_portal │ ├── README.adoc │ ├── __init__.py │ └── portal.py │ ├── shared_resource.py │ ├── ssh.py │ ├── url.py │ ├── vault.py │ └── virtwho.py ├── scripts ├── config_helpers.py ├── customer_scenarios.py ├── fix_uuids.sh ├── fixture_cli.py ├── graph_entities.py ├── hammer_command_tree.py ├── populate_jira_cache.py ├── token_editor.py ├── tokenize_customer_scenario.py ├── validate_config.py └── vault_login.py ├── selenium_grid.sh ├── settings.sample.yaml ├── testimony.yaml └── tests ├── __init__.py ├── foreman ├── __init__.py ├── api │ ├── __init__.py │ ├── test_acs.py │ ├── test_activationkey.py │ ├── test_ansible.py │ ├── test_architecture.py │ ├── test_audit.py │ ├── test_bookmarks.py │ ├── test_capsule.py │ ├── test_capsulecontent.py │ ├── test_classparameters.py │ ├── test_computeprofile.py │ ├── test_computeresource_azurerm.py │ ├── test_computeresource_gce.py │ ├── test_computeresource_libvirt.py │ ├── test_computeresource_vmware.py │ ├── test_contentcredentials.py │ ├── test_contentview.py │ ├── test_contentviewfilter.py │ ├── test_contentviewversion.py │ ├── test_convert2rhel.py │ ├── test_discoveredhost.py │ ├── test_discoveryrule.py │ ├── test_docker.py │ ├── test_environment.py │ ├── test_eol_banner.py │ ├── test_errata.py │ ├── test_filter.py │ ├── test_foremantask.py │ ├── test_host.py │ ├── test_hostcollection.py │ ├── test_hostgroup.py │ ├── test_http_proxy.py │ ├── test_imagemode.py │ ├── test_jobtemplate.py │ ├── test_ldapauthsource.py │ ├── test_lifecycleenvironment.py │ ├── test_location.py │ ├── test_media.py │ ├── test_multiple_paths.py │ ├── test_notifications.py │ ├── test_operatingsystem.py │ ├── test_organization.py │ ├── test_oscap_tailoringfiles.py │ ├── test_oscappolicy.py │ ├── test_parameters.py │ ├── test_partitiontable.py │ ├── test_permission.py │ ├── test_ping.py │ ├── test_product.py │ ├── test_provisioning.py │ ├── test_provisioning_puppet.py │ ├── test_provisioningtemplate.py │ ├── test_registration.py │ ├── test_remoteexecution.py │ ├── test_reporttemplates.py │ ├── test_repositories.py │ ├── test_repository.py │ ├── test_repository_set.py │ ├── test_rhc.py │ ├── test_rhcloud_inventory.py │ ├── test_rhcloud_iop.py │ ├── test_rhsm.py │ ├── test_role.py │ ├── test_settings.py │ ├── test_subnet.py │ ├── test_subscription.py │ ├── test_syncplan.py │ ├── test_template_combination.py │ ├── test_templatesync.py │ ├── test_user.py │ ├── test_usergroup.py │ └── test_webhook.py ├── cli │ ├── __init__.py │ ├── test_acs.py │ ├── test_activationkey.py │ ├── test_ansible.py │ ├── test_architecture.py │ ├── test_artifacts.py │ ├── test_auth.py │ ├── test_bootdisk.py │ ├── test_capsule.py │ ├── test_capsulecontent.py │ ├── test_classparameters.py │ ├── test_computeresource_azurerm.py │ ├── test_computeresource_ec2.py │ ├── test_computeresource_libvirt.py │ ├── test_computeresource_osp.py │ ├── test_computeresource_vmware.py │ ├── test_container_management.py │ ├── test_contentaccess.py │ ├── test_contentcredentials.py │ ├── test_contentview.py │ ├── test_contentviewfilter.py │ ├── test_discoveredhost.py │ ├── test_discoveryrule.py │ ├── test_docker.py │ ├── test_domain.py │ ├── test_environment.py │ ├── test_errata.py │ ├── test_fact.py │ ├── test_filter.py │ ├── test_flatpak.py │ ├── test_foremantask.py │ ├── test_globalparam.py │ ├── test_hammer.py │ ├── test_host.py │ ├── test_hostcollection.py │ ├── test_hostgroup.py │ ├── test_http_proxy.py │ ├── test_imagemode.py │ ├── test_installer.py │ ├── test_jobtemplate.py │ ├── test_ldapauthsource.py │ ├── test_leapp_client.py │ ├── test_lifecycleenvironment.py │ ├── test_location.py │ ├── test_logging.py │ ├── test_medium.py │ ├── test_model.py │ ├── test_operatingsystem.py │ ├── test_organization.py │ ├── test_oscap.py │ ├── test_oscap_tailoringfiles.py │ ├── test_ostreebranch.py │ ├── test_partitiontable.py │ ├── test_ping.py │ ├── test_product.py │ ├── test_provisioning.py │ ├── test_provisioningtemplate.py │ ├── test_pulp.py │ ├── test_puppetclass.py │ ├── test_realm.py │ ├── test_registration.py │ ├── test_remoteexecution.py │ ├── test_report.py │ ├── test_reporttemplates.py │ ├── test_repositories.py │ ├── test_repository.py │ ├── test_repository_set.py │ ├── test_rhcloud_inventory.py │ ├── test_rhcloud_iop.py │ ├── test_role.py │ ├── test_satellitesync.py │ ├── test_settings.py │ ├── test_sso.py │ ├── test_subnet.py │ ├── test_subscription.py │ ├── test_syncplan.py │ ├── test_templatesync.py │ ├── test_usage_report.py │ ├── test_user.py │ ├── test_usergroup.py │ └── test_webhook.py ├── conftest.py ├── data │ ├── 99-haproxy.conf │ ├── U_RHEL_7_V3R6_STIG_SCAP_1-2_Benchmark.xml │ ├── ant-7.7.7-1.noarch.rpm │ ├── certs.sh │ ├── emanuel.iso │ ├── expired-manifest.zip │ ├── extensions.txt │ ├── generate-ca.sh │ ├── generate-crt.sh │ ├── hammer_commands.json │ ├── haproxy.cfg │ ├── openssl.cnf │ ├── os_template.txt │ ├── partition_script.txt │ ├── puppet_custom_selinux-0.3.1.tar.gz │ ├── puppetlabs-ntp-3.2.1.tar.gz │ ├── report_template.txt │ ├── scap-security-guide-satellite-4.3.4-1.el9sat.noarch.rpm │ ├── scap-security-guide-satellite-4.3.4-1.el9sat.noarch.rpm.txt │ ├── scap-security-guide-satellite-4.3.5-1.el9sat.noarch.rpm │ ├── scap-security-guide-satellite-4.3.5-1.el9sat.noarch.rpm.txt │ ├── snippet.txt │ ├── ssg-rhel7-ds-tailoring.xml │ ├── sshkeys.json │ ├── uri.sh │ ├── usage_report.yml │ ├── usage_report_condensed.yml │ ├── valid_cert.crt │ ├── valid_gpg_key.txt │ ├── valid_gpg_key_beta.txt │ ├── which-2.19-6.el6.src.rpm │ ├── which-2.19-6.el6.x86_64.rpm │ └── zoo_custom_gpgkey.txt ├── destructive │ ├── __init__.py │ ├── conftest.py │ ├── test_ansible.py │ ├── test_auth.py │ ├── test_capsule_loadbalancer.py │ ├── test_capsulecontent.py │ ├── test_clone.py │ ├── test_container_management.py │ ├── test_contenthost.py │ ├── test_contentview.py │ ├── test_discoveredhost.py │ ├── test_fm_upgrade.py │ ├── test_foreman_rake.py │ ├── test_host.py │ ├── test_infoblox.py │ ├── test_installer.py │ ├── test_katello_certs_check.py │ ├── test_ldap_authentication.py │ ├── test_ldapauthsource.py │ ├── test_leapp_satellite.py │ ├── test_packages.py │ ├── test_ping.py │ ├── test_puppetplugin.py │ ├── test_realm.py │ ├── test_registration.py │ ├── test_remoteexecution.py │ ├── test_rename.py │ └── test_repository.py ├── endtoend │ ├── __init__.py │ ├── test_api_endtoend.py │ └── test_cli_endtoend.py ├── installer │ ├── __init__.py │ ├── test_infoblox.py │ └── test_installer.py ├── longrun │ ├── __init__.py │ ├── test_inc_updates.py │ ├── test_oscap.py │ └── test_remoteexecution.py ├── maintain │ ├── test_advanced.py │ ├── test_backup_restore.py │ ├── test_health.py │ ├── test_maintenance_mode.py │ ├── test_offload_DB.py │ ├── test_packages.py │ ├── test_service.py │ └── test_upgrade.py ├── sanity │ └── test_bvt.py ├── sys │ ├── __init__.py │ ├── test_dynflow.py │ ├── test_fam.py │ ├── test_katello_certs_check.py │ ├── test_mcp.py │ └── test_pulp3_filesystem.py ├── ui │ ├── __init__.py │ ├── conftest.py │ ├── test_acs.py │ ├── test_activationkey.py │ ├── test_ansible.py │ ├── test_architecture.py │ ├── test_audit.py │ ├── test_bookmarks.py │ ├── test_branding.py │ ├── test_capsulecontent.py │ ├── test_computeprofiles.py │ ├── test_computeresource_azurerm.py │ ├── test_computeresource_ec2.py │ ├── test_computeresource_gce.py │ ├── test_computeresource_libvirt.py │ ├── test_computeresource_vmware.py │ ├── test_config_group.py │ ├── test_containerimagetag.py │ ├── test_contentcredentials.py │ ├── test_contenthost.py │ ├── test_contentview.py │ ├── test_contentview_old.py │ ├── test_dashboard.py │ ├── test_discoveredhost.py │ ├── test_discoveryrule.py │ ├── test_documentation_links.py │ ├── test_domain.py │ ├── test_eol_banner.py │ ├── test_errata.py │ ├── test_fact.py │ ├── test_flatpak.py │ ├── test_hardwaremodel.py │ ├── test_host.py │ ├── test_hostcollection.py │ ├── test_hostgroup.py │ ├── test_http_proxy.py │ ├── test_imagemode.py │ ├── test_jobtemplate.py │ ├── test_ldap_authentication.py │ ├── test_leapp_client.py │ ├── test_lifecycleenvironment.py │ ├── test_location.py │ ├── test_media.py │ ├── test_modulestreams.py │ ├── test_operatingsystem.py │ ├── test_organization.py │ ├── test_oscapcontent.py │ ├── test_oscappolicy.py │ ├── test_oscaptailoringfile.py │ ├── test_package.py │ ├── test_partitiontable.py │ ├── test_product.py │ ├── test_provisioningtemplate.py │ ├── test_puppetclass.py │ ├── test_puppetenvironment.py │ ├── test_registration.py │ ├── test_remoteexecution.py │ ├── test_reporttemplates.py │ ├── test_repositories.py │ ├── test_repository.py │ ├── test_rhc.py │ ├── test_rhcloud_insights.py │ ├── test_rhcloud_insights_vulnerability.py │ ├── test_rhcloud_inventory.py │ ├── test_rhcloud_iop.py │ ├── test_role.py │ ├── test_search.py │ ├── test_settings.py │ ├── test_smartclassparameter.py │ ├── test_subnet.py │ ├── test_subscription.py │ ├── test_sync.py │ ├── test_syncplan.py │ ├── test_templatesync.py │ ├── test_user.py │ ├── test_usergroup.py │ └── test_webhook.py └── virtwho │ ├── __init__.py │ ├── api │ ├── __init__.py │ ├── test_esx_sca.py │ ├── test_hyperv_sca.py │ ├── test_kubevirt_sca.py │ ├── test_libvirt_sca.py │ └── test_nutanix_sca.py │ ├── cli │ ├── __init__.py │ ├── test_esx_sca.py │ ├── test_hyperv_sca.py │ ├── test_kubevirt_sca.py │ ├── test_libvirt_sca.py │ └── test_nutanix_sca.py │ ├── conftest.py │ └── ui │ ├── __init__.py │ ├── test_esx_sca.py │ ├── test_hyperv_sca.py │ ├── test_kubevirt_sca.py │ ├── test_libvirt_sca.py │ └── test_nutanix_sca.py ├── new_upgrades ├── __init__.py ├── conftest.py ├── test_activation_key.py ├── test_bookmarks.py ├── test_capsulecontent.py ├── test_classparameter.py ├── test_client.py ├── test_computeresource_gce.py ├── test_contentview.py ├── test_discovery.py ├── test_errata.py ├── test_hostcontent.py ├── test_hostgroup.py ├── test_performance_tuning.py ├── test_provisioningtemplate.py ├── test_pulp.py ├── test_puppet.py ├── test_remoteexecution.py ├── test_repository.py ├── test_role.py ├── test_satellitesync.py ├── test_subscription.py ├── test_syncplan.py ├── test_usergroup.py └── test_virtwho.py ├── robottelo ├── __init__.py ├── conftest.py ├── data │ └── test_dsa.key ├── test_cli.py ├── test_cli_method_calls.py ├── test_datafactory.py ├── test_decorators.py ├── test_dependencies.py ├── test_enum.py ├── test_func_locker.py ├── test_func_shared.py ├── test_hammer.py ├── test_helpers.py ├── test_report.py ├── test_shared_resource.py └── test_ssh.py └── upgrades ├── __init__.py ├── conftest.py ├── test_activation_key.py ├── test_bookmarks.py ├── test_capsulecontent.py ├── test_classparameter.py ├── test_client.py ├── test_computeresource_gce.py ├── test_contentview.py ├── test_discovery.py ├── test_errata.py ├── test_hostcontent.py ├── test_hostgroup.py ├── test_performance_tuning.py ├── test_provisioningtemplate.py ├── test_puppet.py ├── test_remoteexecution.py ├── test_repository.py ├── test_role.py ├── test_satellitesync.py ├── test_subnet.py ├── test_subscription.py ├── test_syncplan.py ├── test_user.py ├── test_usergroup.py └── test_virtwho.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/.env.example -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- 1 | addAssignees: author 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/dependency_tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/.github/dependency_tests.yaml -------------------------------------------------------------------------------- /.github/workflows/auto_assignment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/.github/workflows/auto_assignment.yaml -------------------------------------------------------------------------------- /.github/workflows/auto_branching.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/.github/workflows/auto_branching.yml -------------------------------------------------------------------------------- /.github/workflows/auto_cherry_pick.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/.github/workflows/auto_cherry_pick.yml -------------------------------------------------------------------------------- /.github/workflows/auto_cherry_pick_merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/.github/workflows/auto_cherry_pick_merge.yaml -------------------------------------------------------------------------------- /.github/workflows/auto_cherry_pick_merged.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/.github/workflows/auto_cherry_pick_merged.yaml -------------------------------------------------------------------------------- /.github/workflows/dependency_merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/.github/workflows/dependency_merge.yml -------------------------------------------------------------------------------- /.github/workflows/dependency_merge_zstream.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/.github/workflows/dependency_merge_zstream.yml -------------------------------------------------------------------------------- /.github/workflows/dispatch_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/.github/workflows/dispatch_release.yml -------------------------------------------------------------------------------- /.github/workflows/prt_labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/.github/workflows/prt_labels.yml -------------------------------------------------------------------------------- /.github/workflows/prt_result.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/.github/workflows/prt_result.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/required_labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/.github/workflows/required_labels.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/update_robottelo_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/.github/workflows/update_robottelo_image.yml -------------------------------------------------------------------------------- /.github/workflows/weekly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/.github/workflows/weekly.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/README.rst -------------------------------------------------------------------------------- /conf/ansible.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/ansible.yaml.template -------------------------------------------------------------------------------- /conf/ansible_hub.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/ansible_hub.yaml.template -------------------------------------------------------------------------------- /conf/azure.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/azure.yaml.template -------------------------------------------------------------------------------- /conf/broker.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/broker.yaml.template -------------------------------------------------------------------------------- /conf/capsule.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/capsule.yaml.template -------------------------------------------------------------------------------- /conf/clone.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/clone.yaml.template -------------------------------------------------------------------------------- /conf/container.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/container.yaml.template -------------------------------------------------------------------------------- /conf/container_repo.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/container_repo.yaml.template -------------------------------------------------------------------------------- /conf/content_host.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/content_host.yaml.template -------------------------------------------------------------------------------- /conf/docker.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/docker.yaml.template -------------------------------------------------------------------------------- /conf/dynaconf_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/dynaconf_hooks.py -------------------------------------------------------------------------------- /conf/ec2.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/ec2.yaml.template -------------------------------------------------------------------------------- /conf/fake_capsules.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/fake_capsules.yaml.template -------------------------------------------------------------------------------- /conf/fam.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/fam.yaml.template -------------------------------------------------------------------------------- /conf/flavors.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/flavors.yaml.template -------------------------------------------------------------------------------- /conf/gce.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/gce.yaml.template -------------------------------------------------------------------------------- /conf/git.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/git.yaml.template -------------------------------------------------------------------------------- /conf/github_repos.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/github_repos.yaml.template -------------------------------------------------------------------------------- /conf/http_proxy.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/http_proxy.yaml.template -------------------------------------------------------------------------------- /conf/infoblox.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/infoblox.yaml.template -------------------------------------------------------------------------------- /conf/ipa.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/ipa.yaml.template -------------------------------------------------------------------------------- /conf/jira.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/jira.yaml.template -------------------------------------------------------------------------------- /conf/ldap.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/ldap.yaml.template -------------------------------------------------------------------------------- /conf/libvirt.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/libvirt.yaml.template -------------------------------------------------------------------------------- /conf/manifest.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/manifest.yaml.template -------------------------------------------------------------------------------- /conf/mcp.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/mcp.yaml.template -------------------------------------------------------------------------------- /conf/migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/migrations.py -------------------------------------------------------------------------------- /conf/ohsnap.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/ohsnap.yaml.template -------------------------------------------------------------------------------- /conf/openldap.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/openldap.yaml.template -------------------------------------------------------------------------------- /conf/oscap.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/oscap.yaml.template -------------------------------------------------------------------------------- /conf/osp.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/osp.yaml.template -------------------------------------------------------------------------------- /conf/performance.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/performance.yaml.template -------------------------------------------------------------------------------- /conf/provisioning.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/provisioning.yaml.template -------------------------------------------------------------------------------- /conf/remotedb.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/remotedb.yaml.template -------------------------------------------------------------------------------- /conf/report_portal.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/report_portal.yaml.template -------------------------------------------------------------------------------- /conf/repos.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/repos.yaml.template -------------------------------------------------------------------------------- /conf/rh_cloud.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/rh_cloud.yaml.template -------------------------------------------------------------------------------- /conf/rhbk.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/rhbk.yaml.template -------------------------------------------------------------------------------- /conf/rhev.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/rhev.yaml.template -------------------------------------------------------------------------------- /conf/rhsso.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/rhsso.yaml.template -------------------------------------------------------------------------------- /conf/robottelo.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/robottelo.yaml.template -------------------------------------------------------------------------------- /conf/server.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/server.yaml.template -------------------------------------------------------------------------------- /conf/shared_function.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/shared_function.yaml.template -------------------------------------------------------------------------------- /conf/subscription.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/subscription.yaml.template -------------------------------------------------------------------------------- /conf/supportability.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/supportability.yaml -------------------------------------------------------------------------------- /conf/ui.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/ui.yaml.template -------------------------------------------------------------------------------- /conf/upgrade.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/upgrade.yaml.template -------------------------------------------------------------------------------- /conf/virtwho.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/virtwho.yaml.template -------------------------------------------------------------------------------- /conf/vmware.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conf/vmware.yaml.template -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/conftest.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/code_standards.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/docs/code_standards.rst -------------------------------------------------------------------------------- /docs/committing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/docs/committing.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/features/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/docs/features/commands.rst -------------------------------------------------------------------------------- /docs/features/decorators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/docs/features/decorators.rst -------------------------------------------------------------------------------- /docs/features/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/docs/features/index.rst -------------------------------------------------------------------------------- /docs/features/ssh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/docs/features/ssh.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/reviewing_PRs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/docs/reviewing_PRs.rst -------------------------------------------------------------------------------- /logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/logging.yaml -------------------------------------------------------------------------------- /manage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/manage.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest_fixtures/component/acs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/acs.py -------------------------------------------------------------------------------- /pytest_fixtures/component/activationkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/activationkey.py -------------------------------------------------------------------------------- /pytest_fixtures/component/ansible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/ansible.py -------------------------------------------------------------------------------- /pytest_fixtures/component/architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/architecture.py -------------------------------------------------------------------------------- /pytest_fixtures/component/computeprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/computeprofile.py -------------------------------------------------------------------------------- /pytest_fixtures/component/contentview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/contentview.py -------------------------------------------------------------------------------- /pytest_fixtures/component/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/discovery.py -------------------------------------------------------------------------------- /pytest_fixtures/component/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/domain.py -------------------------------------------------------------------------------- /pytest_fixtures/component/flatpak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/flatpak.py -------------------------------------------------------------------------------- /pytest_fixtures/component/global_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/global_params.py -------------------------------------------------------------------------------- /pytest_fixtures/component/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/host.py -------------------------------------------------------------------------------- /pytest_fixtures/component/hostgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/hostgroup.py -------------------------------------------------------------------------------- /pytest_fixtures/component/http_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/http_proxy.py -------------------------------------------------------------------------------- /pytest_fixtures/component/katello_certs_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/katello_certs_check.py -------------------------------------------------------------------------------- /pytest_fixtures/component/lce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/lce.py -------------------------------------------------------------------------------- /pytest_fixtures/component/leapp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/leapp_client.py -------------------------------------------------------------------------------- /pytest_fixtures/component/maintain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/maintain.py -------------------------------------------------------------------------------- /pytest_fixtures/component/mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/mcp.py -------------------------------------------------------------------------------- /pytest_fixtures/component/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/os.py -------------------------------------------------------------------------------- /pytest_fixtures/component/oscap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/oscap.py -------------------------------------------------------------------------------- /pytest_fixtures/component/partition_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/partition_table.py -------------------------------------------------------------------------------- /pytest_fixtures/component/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/permissions.py -------------------------------------------------------------------------------- /pytest_fixtures/component/provision_azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/provision_azure.py -------------------------------------------------------------------------------- /pytest_fixtures/component/provision_capsule_pxe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/provision_capsule_pxe.py -------------------------------------------------------------------------------- /pytest_fixtures/component/provision_gce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/provision_gce.py -------------------------------------------------------------------------------- /pytest_fixtures/component/provision_libvirt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/provision_libvirt.py -------------------------------------------------------------------------------- /pytest_fixtures/component/provision_pxe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/provision_pxe.py -------------------------------------------------------------------------------- /pytest_fixtures/component/provision_vmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/provision_vmware.py -------------------------------------------------------------------------------- /pytest_fixtures/component/provisioning_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/provisioning_template.py -------------------------------------------------------------------------------- /pytest_fixtures/component/pulp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/pulp.py -------------------------------------------------------------------------------- /pytest_fixtures/component/puppet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/puppet.py -------------------------------------------------------------------------------- /pytest_fixtures/component/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/repository.py -------------------------------------------------------------------------------- /pytest_fixtures/component/rh_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/rh_cloud.py -------------------------------------------------------------------------------- /pytest_fixtures/component/satellite_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/satellite_auth.py -------------------------------------------------------------------------------- /pytest_fixtures/component/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/settings.py -------------------------------------------------------------------------------- /pytest_fixtures/component/smartproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/smartproxy.py -------------------------------------------------------------------------------- /pytest_fixtures/component/subnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/subnet.py -------------------------------------------------------------------------------- /pytest_fixtures/component/subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/subscription.py -------------------------------------------------------------------------------- /pytest_fixtures/component/taxonomy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/taxonomy.py -------------------------------------------------------------------------------- /pytest_fixtures/component/templatesync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/templatesync.py -------------------------------------------------------------------------------- /pytest_fixtures/component/usage_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/usage_report.py -------------------------------------------------------------------------------- /pytest_fixtures/component/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/user.py -------------------------------------------------------------------------------- /pytest_fixtures/component/user_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/user_role.py -------------------------------------------------------------------------------- /pytest_fixtures/component/virtwho_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/component/virtwho_config.py -------------------------------------------------------------------------------- /pytest_fixtures/core/broker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/core/broker.py -------------------------------------------------------------------------------- /pytest_fixtures/core/contenthosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/core/contenthosts.py -------------------------------------------------------------------------------- /pytest_fixtures/core/reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/core/reporting.py -------------------------------------------------------------------------------- /pytest_fixtures/core/sat_cap_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/core/sat_cap_factory.py -------------------------------------------------------------------------------- /pytest_fixtures/core/sys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/core/sys.py -------------------------------------------------------------------------------- /pytest_fixtures/core/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/core/ui.py -------------------------------------------------------------------------------- /pytest_fixtures/core/upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/core/upgrade.py -------------------------------------------------------------------------------- /pytest_fixtures/core/xdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_fixtures/core/xdist.py -------------------------------------------------------------------------------- /pytest_plugins/auto_vault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/auto_vault.py -------------------------------------------------------------------------------- /pytest_plugins/capsule_n-minus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/capsule_n-minus.py -------------------------------------------------------------------------------- /pytest_plugins/disable_rp_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/disable_rp_params.py -------------------------------------------------------------------------------- /pytest_plugins/external_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/external_logging.py -------------------------------------------------------------------------------- /pytest_plugins/factory_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/factory_collection.py -------------------------------------------------------------------------------- /pytest_plugins/fixture_markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/fixture_markers.py -------------------------------------------------------------------------------- /pytest_plugins/fspath_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/fspath_plugins.py -------------------------------------------------------------------------------- /pytest_plugins/infra_dependent_markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/infra_dependent_markers.py -------------------------------------------------------------------------------- /pytest_plugins/issue_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/issue_handlers.py -------------------------------------------------------------------------------- /pytest_plugins/jira_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/jira_comments.py -------------------------------------------------------------------------------- /pytest_plugins/logging_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/logging_hooks.py -------------------------------------------------------------------------------- /pytest_plugins/manual_skipped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/manual_skipped.py -------------------------------------------------------------------------------- /pytest_plugins/marker_deselection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/marker_deselection.py -------------------------------------------------------------------------------- /pytest_plugins/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/markers.py -------------------------------------------------------------------------------- /pytest_plugins/metadata_markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/metadata_markers.py -------------------------------------------------------------------------------- /pytest_plugins/requirements/req_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/requirements/req_updater.py -------------------------------------------------------------------------------- /pytest_plugins/requirements/update_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/requirements/update_requirements.py -------------------------------------------------------------------------------- /pytest_plugins/rerun_rp/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/rerun_rp/README.adoc -------------------------------------------------------------------------------- /pytest_plugins/rerun_rp/rerun_rp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/rerun_rp/rerun_rp.py -------------------------------------------------------------------------------- /pytest_plugins/sanity_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/sanity_plugin.py -------------------------------------------------------------------------------- /pytest_plugins/select_random_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/select_random_tests.py -------------------------------------------------------------------------------- /pytest_plugins/settings_skip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/settings_skip.py -------------------------------------------------------------------------------- /pytest_plugins/upstream_pr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/upstream_pr.py -------------------------------------------------------------------------------- /pytest_plugins/video_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/pytest_plugins/video_cleanup.py -------------------------------------------------------------------------------- /requirements-optional.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/requirements-optional.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/requirements.txt -------------------------------------------------------------------------------- /robottelo.yaml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo.yaml.sample -------------------------------------------------------------------------------- /robottelo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/__init__.py -------------------------------------------------------------------------------- /robottelo/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /robottelo/cli/acs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/acs.py -------------------------------------------------------------------------------- /robottelo/cli/activationkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/activationkey.py -------------------------------------------------------------------------------- /robottelo/cli/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/admin.py -------------------------------------------------------------------------------- /robottelo/cli/ansible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/ansible.py -------------------------------------------------------------------------------- /robottelo/cli/architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/architecture.py -------------------------------------------------------------------------------- /robottelo/cli/arfreport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/arfreport.py -------------------------------------------------------------------------------- /robottelo/cli/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/auth.py -------------------------------------------------------------------------------- /robottelo/cli/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/base.py -------------------------------------------------------------------------------- /robottelo/cli/bootdisk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/bootdisk.py -------------------------------------------------------------------------------- /robottelo/cli/capsule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/capsule.py -------------------------------------------------------------------------------- /robottelo/cli/computeprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/computeprofile.py -------------------------------------------------------------------------------- /robottelo/cli/computeresource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/computeresource.py -------------------------------------------------------------------------------- /robottelo/cli/content_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/content_credentials.py -------------------------------------------------------------------------------- /robottelo/cli/content_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/content_export.py -------------------------------------------------------------------------------- /robottelo/cli/content_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/content_import.py -------------------------------------------------------------------------------- /robottelo/cli/contentview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/contentview.py -------------------------------------------------------------------------------- /robottelo/cli/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/defaults.py -------------------------------------------------------------------------------- /robottelo/cli/discoveredhost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/discoveredhost.py -------------------------------------------------------------------------------- /robottelo/cli/discoveryrule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/discoveryrule.py -------------------------------------------------------------------------------- /robottelo/cli/docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/docker.py -------------------------------------------------------------------------------- /robottelo/cli/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/domain.py -------------------------------------------------------------------------------- /robottelo/cli/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/environment.py -------------------------------------------------------------------------------- /robottelo/cli/erratum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/erratum.py -------------------------------------------------------------------------------- /robottelo/cli/fact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/fact.py -------------------------------------------------------------------------------- /robottelo/cli/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/file.py -------------------------------------------------------------------------------- /robottelo/cli/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/filter.py -------------------------------------------------------------------------------- /robottelo/cli/flatpak_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/flatpak_remote.py -------------------------------------------------------------------------------- /robottelo/cli/globalparam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/globalparam.py -------------------------------------------------------------------------------- /robottelo/cli/gpgkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/gpgkey.py -------------------------------------------------------------------------------- /robottelo/cli/hammer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/hammer.py -------------------------------------------------------------------------------- /robottelo/cli/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/host.py -------------------------------------------------------------------------------- /robottelo/cli/host_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/host_registration.py -------------------------------------------------------------------------------- /robottelo/cli/hostcollection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/hostcollection.py -------------------------------------------------------------------------------- /robottelo/cli/hostgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/hostgroup.py -------------------------------------------------------------------------------- /robottelo/cli/http_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/http_proxy.py -------------------------------------------------------------------------------- /robottelo/cli/insights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/insights.py -------------------------------------------------------------------------------- /robottelo/cli/job_invocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/job_invocation.py -------------------------------------------------------------------------------- /robottelo/cli/job_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/job_template.py -------------------------------------------------------------------------------- /robottelo/cli/ldapauthsource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/ldapauthsource.py -------------------------------------------------------------------------------- /robottelo/cli/lifecycleenvironment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/lifecycleenvironment.py -------------------------------------------------------------------------------- /robottelo/cli/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/location.py -------------------------------------------------------------------------------- /robottelo/cli/medium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/medium.py -------------------------------------------------------------------------------- /robottelo/cli/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/model.py -------------------------------------------------------------------------------- /robottelo/cli/module_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/module_stream.py -------------------------------------------------------------------------------- /robottelo/cli/operatingsys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/operatingsys.py -------------------------------------------------------------------------------- /robottelo/cli/org.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/org.py -------------------------------------------------------------------------------- /robottelo/cli/ostreebranch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/ostreebranch.py -------------------------------------------------------------------------------- /robottelo/cli/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/package.py -------------------------------------------------------------------------------- /robottelo/cli/partitiontable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/partitiontable.py -------------------------------------------------------------------------------- /robottelo/cli/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/product.py -------------------------------------------------------------------------------- /robottelo/cli/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/proxy.py -------------------------------------------------------------------------------- /robottelo/cli/puppet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/puppet.py -------------------------------------------------------------------------------- /robottelo/cli/realm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/realm.py -------------------------------------------------------------------------------- /robottelo/cli/recurring_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/recurring_logic.py -------------------------------------------------------------------------------- /robottelo/cli/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/report.py -------------------------------------------------------------------------------- /robottelo/cli/report_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/report_template.py -------------------------------------------------------------------------------- /robottelo/cli/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/repository.py -------------------------------------------------------------------------------- /robottelo/cli/repository_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/repository_set.py -------------------------------------------------------------------------------- /robottelo/cli/rex_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/rex_feature.py -------------------------------------------------------------------------------- /robottelo/cli/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/role.py -------------------------------------------------------------------------------- /robottelo/cli/scap_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/scap_policy.py -------------------------------------------------------------------------------- /robottelo/cli/scap_tailoring_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/scap_tailoring_files.py -------------------------------------------------------------------------------- /robottelo/cli/scapcontent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/scapcontent.py -------------------------------------------------------------------------------- /robottelo/cli/scparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/scparams.py -------------------------------------------------------------------------------- /robottelo/cli/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/settings.py -------------------------------------------------------------------------------- /robottelo/cli/sm_advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/sm_advanced.py -------------------------------------------------------------------------------- /robottelo/cli/sm_advanced_by_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/sm_advanced_by_tag.py -------------------------------------------------------------------------------- /robottelo/cli/sm_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/sm_backup.py -------------------------------------------------------------------------------- /robottelo/cli/sm_health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/sm_health.py -------------------------------------------------------------------------------- /robottelo/cli/sm_maintenance_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/sm_maintenance_mode.py -------------------------------------------------------------------------------- /robottelo/cli/sm_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/sm_packages.py -------------------------------------------------------------------------------- /robottelo/cli/sm_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/sm_report.py -------------------------------------------------------------------------------- /robottelo/cli/sm_restore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/sm_restore.py -------------------------------------------------------------------------------- /robottelo/cli/sm_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/sm_service.py -------------------------------------------------------------------------------- /robottelo/cli/sm_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/sm_update.py -------------------------------------------------------------------------------- /robottelo/cli/sm_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/sm_upgrade.py -------------------------------------------------------------------------------- /robottelo/cli/srpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/srpm.py -------------------------------------------------------------------------------- /robottelo/cli/subnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/subnet.py -------------------------------------------------------------------------------- /robottelo/cli/subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/subscription.py -------------------------------------------------------------------------------- /robottelo/cli/syncplan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/syncplan.py -------------------------------------------------------------------------------- /robottelo/cli/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/task.py -------------------------------------------------------------------------------- /robottelo/cli/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/template.py -------------------------------------------------------------------------------- /robottelo/cli/template_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/template_input.py -------------------------------------------------------------------------------- /robottelo/cli/template_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/template_sync.py -------------------------------------------------------------------------------- /robottelo/cli/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/user.py -------------------------------------------------------------------------------- /robottelo/cli/usergroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/usergroup.py -------------------------------------------------------------------------------- /robottelo/cli/virt_who_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/virt_who_config.py -------------------------------------------------------------------------------- /robottelo/cli/webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/cli/webhook.py -------------------------------------------------------------------------------- /robottelo/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/config/__init__.py -------------------------------------------------------------------------------- /robottelo/config/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/config/validators.py -------------------------------------------------------------------------------- /robottelo/constants/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/constants/__init__.py -------------------------------------------------------------------------------- /robottelo/constants/repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/constants/repos.py -------------------------------------------------------------------------------- /robottelo/content_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/content_info.py -------------------------------------------------------------------------------- /robottelo/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/enums.py -------------------------------------------------------------------------------- /robottelo/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/exceptions.py -------------------------------------------------------------------------------- /robottelo/host_helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/host_helpers/__init__.py -------------------------------------------------------------------------------- /robottelo/host_helpers/api_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/host_helpers/api_factory.py -------------------------------------------------------------------------------- /robottelo/host_helpers/capsule_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/host_helpers/capsule_mixins.py -------------------------------------------------------------------------------- /robottelo/host_helpers/cli_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/host_helpers/cli_factory.py -------------------------------------------------------------------------------- /robottelo/host_helpers/contenthost_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/host_helpers/contenthost_mixins.py -------------------------------------------------------------------------------- /robottelo/host_helpers/repository_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/host_helpers/repository_mixins.py -------------------------------------------------------------------------------- /robottelo/host_helpers/satellite_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/host_helpers/satellite_mixins.py -------------------------------------------------------------------------------- /robottelo/host_helpers/ui_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/host_helpers/ui_factory.py -------------------------------------------------------------------------------- /robottelo/hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/hosts.py -------------------------------------------------------------------------------- /robottelo/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/logging.py -------------------------------------------------------------------------------- /robottelo/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/ssh.py -------------------------------------------------------------------------------- /robottelo/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/utils/__init__.py -------------------------------------------------------------------------------- /robottelo/utils/datafactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/utils/datafactory.py -------------------------------------------------------------------------------- /robottelo/utils/decorators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/utils/decorators/__init__.py -------------------------------------------------------------------------------- /robottelo/utils/decorators/func_locker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/utils/decorators/func_locker.py -------------------------------------------------------------------------------- /robottelo/utils/decorators/func_shared/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/utils/decorators/func_shared/__init__.py -------------------------------------------------------------------------------- /robottelo/utils/decorators/func_shared/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/utils/decorators/func_shared/base.py -------------------------------------------------------------------------------- /robottelo/utils/decorators/func_shared/file_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/utils/decorators/func_shared/file_storage.py -------------------------------------------------------------------------------- /robottelo/utils/decorators/func_shared/redis_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/utils/decorators/func_shared/redis_storage.py -------------------------------------------------------------------------------- /robottelo/utils/decorators/func_shared/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/utils/decorators/func_shared/shared.py -------------------------------------------------------------------------------- /robottelo/utils/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/utils/installer.py -------------------------------------------------------------------------------- /robottelo/utils/io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/utils/io/__init__.py -------------------------------------------------------------------------------- /robottelo/utils/issue_handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/utils/issue_handlers/__init__.py -------------------------------------------------------------------------------- /robottelo/utils/issue_handlers/jira.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/utils/issue_handlers/jira.py -------------------------------------------------------------------------------- /robottelo/utils/ohsnap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/utils/ohsnap.py -------------------------------------------------------------------------------- /robottelo/utils/report_portal/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/utils/report_portal/README.adoc -------------------------------------------------------------------------------- /robottelo/utils/report_portal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /robottelo/utils/report_portal/portal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/utils/report_portal/portal.py -------------------------------------------------------------------------------- /robottelo/utils/shared_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/utils/shared_resource.py -------------------------------------------------------------------------------- /robottelo/utils/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/utils/ssh.py -------------------------------------------------------------------------------- /robottelo/utils/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/utils/url.py -------------------------------------------------------------------------------- /robottelo/utils/vault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/utils/vault.py -------------------------------------------------------------------------------- /robottelo/utils/virtwho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/robottelo/utils/virtwho.py -------------------------------------------------------------------------------- /scripts/config_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/scripts/config_helpers.py -------------------------------------------------------------------------------- /scripts/customer_scenarios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/scripts/customer_scenarios.py -------------------------------------------------------------------------------- /scripts/fix_uuids.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/scripts/fix_uuids.sh -------------------------------------------------------------------------------- /scripts/fixture_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/scripts/fixture_cli.py -------------------------------------------------------------------------------- /scripts/graph_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/scripts/graph_entities.py -------------------------------------------------------------------------------- /scripts/hammer_command_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/scripts/hammer_command_tree.py -------------------------------------------------------------------------------- /scripts/populate_jira_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/scripts/populate_jira_cache.py -------------------------------------------------------------------------------- /scripts/token_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/scripts/token_editor.py -------------------------------------------------------------------------------- /scripts/tokenize_customer_scenario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/scripts/tokenize_customer_scenario.py -------------------------------------------------------------------------------- /scripts/validate_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/scripts/validate_config.py -------------------------------------------------------------------------------- /scripts/vault_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/scripts/vault_login.py -------------------------------------------------------------------------------- /selenium_grid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/selenium_grid.sh -------------------------------------------------------------------------------- /settings.sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/settings.sample.yaml -------------------------------------------------------------------------------- /testimony.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/testimony.yaml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/foreman/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/foreman/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/__init__.py -------------------------------------------------------------------------------- /tests/foreman/api/test_acs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_acs.py -------------------------------------------------------------------------------- /tests/foreman/api/test_activationkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_activationkey.py -------------------------------------------------------------------------------- /tests/foreman/api/test_ansible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_ansible.py -------------------------------------------------------------------------------- /tests/foreman/api/test_architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_architecture.py -------------------------------------------------------------------------------- /tests/foreman/api/test_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_audit.py -------------------------------------------------------------------------------- /tests/foreman/api/test_bookmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_bookmarks.py -------------------------------------------------------------------------------- /tests/foreman/api/test_capsule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_capsule.py -------------------------------------------------------------------------------- /tests/foreman/api/test_capsulecontent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_capsulecontent.py -------------------------------------------------------------------------------- /tests/foreman/api/test_classparameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_classparameters.py -------------------------------------------------------------------------------- /tests/foreman/api/test_computeprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_computeprofile.py -------------------------------------------------------------------------------- /tests/foreman/api/test_computeresource_azurerm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_computeresource_azurerm.py -------------------------------------------------------------------------------- /tests/foreman/api/test_computeresource_gce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_computeresource_gce.py -------------------------------------------------------------------------------- /tests/foreman/api/test_computeresource_libvirt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_computeresource_libvirt.py -------------------------------------------------------------------------------- /tests/foreman/api/test_computeresource_vmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_computeresource_vmware.py -------------------------------------------------------------------------------- /tests/foreman/api/test_contentcredentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_contentcredentials.py -------------------------------------------------------------------------------- /tests/foreman/api/test_contentview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_contentview.py -------------------------------------------------------------------------------- /tests/foreman/api/test_contentviewfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_contentviewfilter.py -------------------------------------------------------------------------------- /tests/foreman/api/test_contentviewversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_contentviewversion.py -------------------------------------------------------------------------------- /tests/foreman/api/test_convert2rhel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_convert2rhel.py -------------------------------------------------------------------------------- /tests/foreman/api/test_discoveredhost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_discoveredhost.py -------------------------------------------------------------------------------- /tests/foreman/api/test_discoveryrule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_discoveryrule.py -------------------------------------------------------------------------------- /tests/foreman/api/test_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_docker.py -------------------------------------------------------------------------------- /tests/foreman/api/test_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_environment.py -------------------------------------------------------------------------------- /tests/foreman/api/test_eol_banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_eol_banner.py -------------------------------------------------------------------------------- /tests/foreman/api/test_errata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_errata.py -------------------------------------------------------------------------------- /tests/foreman/api/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_filter.py -------------------------------------------------------------------------------- /tests/foreman/api/test_foremantask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_foremantask.py -------------------------------------------------------------------------------- /tests/foreman/api/test_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_host.py -------------------------------------------------------------------------------- /tests/foreman/api/test_hostcollection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_hostcollection.py -------------------------------------------------------------------------------- /tests/foreman/api/test_hostgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_hostgroup.py -------------------------------------------------------------------------------- /tests/foreman/api/test_http_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_http_proxy.py -------------------------------------------------------------------------------- /tests/foreman/api/test_imagemode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_imagemode.py -------------------------------------------------------------------------------- /tests/foreman/api/test_jobtemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_jobtemplate.py -------------------------------------------------------------------------------- /tests/foreman/api/test_ldapauthsource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_ldapauthsource.py -------------------------------------------------------------------------------- /tests/foreman/api/test_lifecycleenvironment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_lifecycleenvironment.py -------------------------------------------------------------------------------- /tests/foreman/api/test_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_location.py -------------------------------------------------------------------------------- /tests/foreman/api/test_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_media.py -------------------------------------------------------------------------------- /tests/foreman/api/test_multiple_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_multiple_paths.py -------------------------------------------------------------------------------- /tests/foreman/api/test_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_notifications.py -------------------------------------------------------------------------------- /tests/foreman/api/test_operatingsystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_operatingsystem.py -------------------------------------------------------------------------------- /tests/foreman/api/test_organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_organization.py -------------------------------------------------------------------------------- /tests/foreman/api/test_oscap_tailoringfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_oscap_tailoringfiles.py -------------------------------------------------------------------------------- /tests/foreman/api/test_oscappolicy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_oscappolicy.py -------------------------------------------------------------------------------- /tests/foreman/api/test_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_parameters.py -------------------------------------------------------------------------------- /tests/foreman/api/test_partitiontable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_partitiontable.py -------------------------------------------------------------------------------- /tests/foreman/api/test_permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_permission.py -------------------------------------------------------------------------------- /tests/foreman/api/test_ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_ping.py -------------------------------------------------------------------------------- /tests/foreman/api/test_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_product.py -------------------------------------------------------------------------------- /tests/foreman/api/test_provisioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_provisioning.py -------------------------------------------------------------------------------- /tests/foreman/api/test_provisioning_puppet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_provisioning_puppet.py -------------------------------------------------------------------------------- /tests/foreman/api/test_provisioningtemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_provisioningtemplate.py -------------------------------------------------------------------------------- /tests/foreman/api/test_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_registration.py -------------------------------------------------------------------------------- /tests/foreman/api/test_remoteexecution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_remoteexecution.py -------------------------------------------------------------------------------- /tests/foreman/api/test_reporttemplates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_reporttemplates.py -------------------------------------------------------------------------------- /tests/foreman/api/test_repositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_repositories.py -------------------------------------------------------------------------------- /tests/foreman/api/test_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_repository.py -------------------------------------------------------------------------------- /tests/foreman/api/test_repository_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_repository_set.py -------------------------------------------------------------------------------- /tests/foreman/api/test_rhc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_rhc.py -------------------------------------------------------------------------------- /tests/foreman/api/test_rhcloud_inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_rhcloud_inventory.py -------------------------------------------------------------------------------- /tests/foreman/api/test_rhcloud_iop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_rhcloud_iop.py -------------------------------------------------------------------------------- /tests/foreman/api/test_rhsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_rhsm.py -------------------------------------------------------------------------------- /tests/foreman/api/test_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_role.py -------------------------------------------------------------------------------- /tests/foreman/api/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_settings.py -------------------------------------------------------------------------------- /tests/foreman/api/test_subnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_subnet.py -------------------------------------------------------------------------------- /tests/foreman/api/test_subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_subscription.py -------------------------------------------------------------------------------- /tests/foreman/api/test_syncplan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_syncplan.py -------------------------------------------------------------------------------- /tests/foreman/api/test_template_combination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_template_combination.py -------------------------------------------------------------------------------- /tests/foreman/api/test_templatesync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_templatesync.py -------------------------------------------------------------------------------- /tests/foreman/api/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_user.py -------------------------------------------------------------------------------- /tests/foreman/api/test_usergroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_usergroup.py -------------------------------------------------------------------------------- /tests/foreman/api/test_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/api/test_webhook.py -------------------------------------------------------------------------------- /tests/foreman/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/foreman/cli/test_acs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_acs.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_activationkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_activationkey.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_ansible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_ansible.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_architecture.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_artifacts.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_auth.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_bootdisk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_bootdisk.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_capsule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_capsule.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_capsulecontent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_capsulecontent.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_classparameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_classparameters.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_computeresource_azurerm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_computeresource_azurerm.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_computeresource_ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_computeresource_ec2.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_computeresource_libvirt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_computeresource_libvirt.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_computeresource_osp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_computeresource_osp.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_computeresource_vmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_computeresource_vmware.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_container_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_container_management.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_contentaccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_contentaccess.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_contentcredentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_contentcredentials.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_contentview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_contentview.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_contentviewfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_contentviewfilter.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_discoveredhost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_discoveredhost.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_discoveryrule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_discoveryrule.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_docker.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_domain.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_environment.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_errata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_errata.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_fact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_fact.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_filter.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_flatpak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_flatpak.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_foremantask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_foremantask.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_globalparam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_globalparam.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_hammer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_hammer.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_host.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_hostcollection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_hostcollection.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_hostgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_hostgroup.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_http_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_http_proxy.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_imagemode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_imagemode.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_installer.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_jobtemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_jobtemplate.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_ldapauthsource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_ldapauthsource.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_leapp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_leapp_client.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_lifecycleenvironment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_lifecycleenvironment.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_location.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_logging.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_medium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_medium.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_model.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_operatingsystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_operatingsystem.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_organization.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_oscap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_oscap.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_oscap_tailoringfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_oscap_tailoringfiles.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_ostreebranch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_ostreebranch.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_partitiontable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_partitiontable.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_ping.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_product.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_provisioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_provisioning.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_provisioningtemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_provisioningtemplate.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_pulp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_pulp.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_puppetclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_puppetclass.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_realm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_realm.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_registration.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_remoteexecution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_remoteexecution.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_report.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_reporttemplates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_reporttemplates.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_repositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_repositories.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_repository.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_repository_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_repository_set.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_rhcloud_inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_rhcloud_inventory.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_rhcloud_iop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_rhcloud_iop.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_role.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_satellitesync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_satellitesync.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_settings.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_sso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_sso.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_subnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_subnet.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_subscription.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_syncplan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_syncplan.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_templatesync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_templatesync.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_usage_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_usage_report.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_user.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_usergroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_usergroup.py -------------------------------------------------------------------------------- /tests/foreman/cli/test_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/cli/test_webhook.py -------------------------------------------------------------------------------- /tests/foreman/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/conftest.py -------------------------------------------------------------------------------- /tests/foreman/data/99-haproxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/99-haproxy.conf -------------------------------------------------------------------------------- /tests/foreman/data/U_RHEL_7_V3R6_STIG_SCAP_1-2_Benchmark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/U_RHEL_7_V3R6_STIG_SCAP_1-2_Benchmark.xml -------------------------------------------------------------------------------- /tests/foreman/data/ant-7.7.7-1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/ant-7.7.7-1.noarch.rpm -------------------------------------------------------------------------------- /tests/foreman/data/certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/certs.sh -------------------------------------------------------------------------------- /tests/foreman/data/emanuel.iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/emanuel.iso -------------------------------------------------------------------------------- /tests/foreman/data/expired-manifest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/expired-manifest.zip -------------------------------------------------------------------------------- /tests/foreman/data/extensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/extensions.txt -------------------------------------------------------------------------------- /tests/foreman/data/generate-ca.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/generate-ca.sh -------------------------------------------------------------------------------- /tests/foreman/data/generate-crt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/generate-crt.sh -------------------------------------------------------------------------------- /tests/foreman/data/hammer_commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/hammer_commands.json -------------------------------------------------------------------------------- /tests/foreman/data/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/haproxy.cfg -------------------------------------------------------------------------------- /tests/foreman/data/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/openssl.cnf -------------------------------------------------------------------------------- /tests/foreman/data/os_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/os_template.txt -------------------------------------------------------------------------------- /tests/foreman/data/partition_script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/partition_script.txt -------------------------------------------------------------------------------- /tests/foreman/data/puppet_custom_selinux-0.3.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/puppet_custom_selinux-0.3.1.tar.gz -------------------------------------------------------------------------------- /tests/foreman/data/puppetlabs-ntp-3.2.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/puppetlabs-ntp-3.2.1.tar.gz -------------------------------------------------------------------------------- /tests/foreman/data/report_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/report_template.txt -------------------------------------------------------------------------------- /tests/foreman/data/scap-security-guide-satellite-4.3.4-1.el9sat.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/scap-security-guide-satellite-4.3.4-1.el9sat.noarch.rpm -------------------------------------------------------------------------------- /tests/foreman/data/scap-security-guide-satellite-4.3.4-1.el9sat.noarch.rpm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/scap-security-guide-satellite-4.3.4-1.el9sat.noarch.rpm.txt -------------------------------------------------------------------------------- /tests/foreman/data/scap-security-guide-satellite-4.3.5-1.el9sat.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/scap-security-guide-satellite-4.3.5-1.el9sat.noarch.rpm -------------------------------------------------------------------------------- /tests/foreman/data/scap-security-guide-satellite-4.3.5-1.el9sat.noarch.rpm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/scap-security-guide-satellite-4.3.5-1.el9sat.noarch.rpm.txt -------------------------------------------------------------------------------- /tests/foreman/data/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/snippet.txt -------------------------------------------------------------------------------- /tests/foreman/data/ssg-rhel7-ds-tailoring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/ssg-rhel7-ds-tailoring.xml -------------------------------------------------------------------------------- /tests/foreman/data/sshkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/sshkeys.json -------------------------------------------------------------------------------- /tests/foreman/data/uri.sh: -------------------------------------------------------------------------------- 1 | echo "Hello!" >/var/tmp/hello.txt 2 | -------------------------------------------------------------------------------- /tests/foreman/data/usage_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/usage_report.yml -------------------------------------------------------------------------------- /tests/foreman/data/usage_report_condensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/usage_report_condensed.yml -------------------------------------------------------------------------------- /tests/foreman/data/valid_cert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/valid_cert.crt -------------------------------------------------------------------------------- /tests/foreman/data/valid_gpg_key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/valid_gpg_key.txt -------------------------------------------------------------------------------- /tests/foreman/data/valid_gpg_key_beta.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/valid_gpg_key_beta.txt -------------------------------------------------------------------------------- /tests/foreman/data/which-2.19-6.el6.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/which-2.19-6.el6.src.rpm -------------------------------------------------------------------------------- /tests/foreman/data/which-2.19-6.el6.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/which-2.19-6.el6.x86_64.rpm -------------------------------------------------------------------------------- /tests/foreman/data/zoo_custom_gpgkey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/data/zoo_custom_gpgkey.txt -------------------------------------------------------------------------------- /tests/foreman/destructive/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/foreman/destructive/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/conftest.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_ansible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_ansible.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_auth.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_capsule_loadbalancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_capsule_loadbalancer.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_capsulecontent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_capsulecontent.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_clone.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_container_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_container_management.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_contenthost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_contenthost.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_contentview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_contentview.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_discoveredhost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_discoveredhost.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_fm_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_fm_upgrade.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_foreman_rake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_foreman_rake.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_host.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_infoblox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_infoblox.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_installer.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_katello_certs_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_katello_certs_check.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_ldap_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_ldap_authentication.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_ldapauthsource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_ldapauthsource.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_leapp_satellite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_leapp_satellite.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_packages.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_ping.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_puppetplugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_puppetplugin.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_realm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_realm.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_registration.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_remoteexecution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_remoteexecution.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_rename.py -------------------------------------------------------------------------------- /tests/foreman/destructive/test_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/destructive/test_repository.py -------------------------------------------------------------------------------- /tests/foreman/endtoend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/foreman/endtoend/test_api_endtoend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/endtoend/test_api_endtoend.py -------------------------------------------------------------------------------- /tests/foreman/endtoend/test_cli_endtoend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/endtoend/test_cli_endtoend.py -------------------------------------------------------------------------------- /tests/foreman/installer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/foreman/installer/test_infoblox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/installer/test_infoblox.py -------------------------------------------------------------------------------- /tests/foreman/installer/test_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/installer/test_installer.py -------------------------------------------------------------------------------- /tests/foreman/longrun/__init__.py: -------------------------------------------------------------------------------- 1 | """These tests may take a long time to run.""" 2 | -------------------------------------------------------------------------------- /tests/foreman/longrun/test_inc_updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/longrun/test_inc_updates.py -------------------------------------------------------------------------------- /tests/foreman/longrun/test_oscap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/longrun/test_oscap.py -------------------------------------------------------------------------------- /tests/foreman/longrun/test_remoteexecution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/longrun/test_remoteexecution.py -------------------------------------------------------------------------------- /tests/foreman/maintain/test_advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/maintain/test_advanced.py -------------------------------------------------------------------------------- /tests/foreman/maintain/test_backup_restore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/maintain/test_backup_restore.py -------------------------------------------------------------------------------- /tests/foreman/maintain/test_health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/maintain/test_health.py -------------------------------------------------------------------------------- /tests/foreman/maintain/test_maintenance_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/maintain/test_maintenance_mode.py -------------------------------------------------------------------------------- /tests/foreman/maintain/test_offload_DB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/maintain/test_offload_DB.py -------------------------------------------------------------------------------- /tests/foreman/maintain/test_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/maintain/test_packages.py -------------------------------------------------------------------------------- /tests/foreman/maintain/test_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/maintain/test_service.py -------------------------------------------------------------------------------- /tests/foreman/maintain/test_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/maintain/test_upgrade.py -------------------------------------------------------------------------------- /tests/foreman/sanity/test_bvt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/sanity/test_bvt.py -------------------------------------------------------------------------------- /tests/foreman/sys/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/foreman/sys/test_dynflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/sys/test_dynflow.py -------------------------------------------------------------------------------- /tests/foreman/sys/test_fam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/sys/test_fam.py -------------------------------------------------------------------------------- /tests/foreman/sys/test_katello_certs_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/sys/test_katello_certs_check.py -------------------------------------------------------------------------------- /tests/foreman/sys/test_mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/sys/test_mcp.py -------------------------------------------------------------------------------- /tests/foreman/sys/test_pulp3_filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/sys/test_pulp3_filesystem.py -------------------------------------------------------------------------------- /tests/foreman/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/foreman/ui/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/foreman/ui/test_acs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_acs.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_activationkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_activationkey.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_ansible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_ansible.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_architecture.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_audit.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_bookmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_bookmarks.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_branding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_branding.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_capsulecontent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_capsulecontent.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_computeprofiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_computeprofiles.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_computeresource_azurerm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_computeresource_azurerm.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_computeresource_ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_computeresource_ec2.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_computeresource_gce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_computeresource_gce.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_computeresource_libvirt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_computeresource_libvirt.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_computeresource_vmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_computeresource_vmware.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_config_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_config_group.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_containerimagetag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_containerimagetag.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_contentcredentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_contentcredentials.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_contenthost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_contenthost.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_contentview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_contentview.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_contentview_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_contentview_old.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_dashboard.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_discoveredhost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_discoveredhost.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_discoveryrule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_discoveryrule.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_documentation_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_documentation_links.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_domain.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_eol_banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_eol_banner.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_errata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_errata.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_fact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_fact.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_flatpak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_flatpak.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_hardwaremodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_hardwaremodel.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_host.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_hostcollection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_hostcollection.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_hostgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_hostgroup.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_http_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_http_proxy.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_imagemode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_imagemode.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_jobtemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_jobtemplate.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_ldap_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_ldap_authentication.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_leapp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_leapp_client.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_lifecycleenvironment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_lifecycleenvironment.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_location.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_media.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_modulestreams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_modulestreams.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_operatingsystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_operatingsystem.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_organization.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_oscapcontent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_oscapcontent.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_oscappolicy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_oscappolicy.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_oscaptailoringfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_oscaptailoringfile.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_package.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_partitiontable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_partitiontable.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_product.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_provisioningtemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_provisioningtemplate.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_puppetclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_puppetclass.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_puppetenvironment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_puppetenvironment.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_registration.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_remoteexecution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_remoteexecution.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_reporttemplates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_reporttemplates.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_repositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_repositories.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_repository.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_rhc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_rhc.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_rhcloud_insights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_rhcloud_insights.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_rhcloud_insights_vulnerability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_rhcloud_insights_vulnerability.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_rhcloud_inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_rhcloud_inventory.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_rhcloud_iop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_rhcloud_iop.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_role.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_search.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_settings.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_smartclassparameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_smartclassparameter.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_subnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_subnet.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_subscription.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_sync.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_syncplan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_syncplan.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_templatesync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_templatesync.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_user.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_usergroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_usergroup.py -------------------------------------------------------------------------------- /tests/foreman/ui/test_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/ui/test_webhook.py -------------------------------------------------------------------------------- /tests/foreman/virtwho/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/foreman/virtwho/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/foreman/virtwho/api/test_esx_sca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/virtwho/api/test_esx_sca.py -------------------------------------------------------------------------------- /tests/foreman/virtwho/api/test_hyperv_sca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/virtwho/api/test_hyperv_sca.py -------------------------------------------------------------------------------- /tests/foreman/virtwho/api/test_kubevirt_sca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/virtwho/api/test_kubevirt_sca.py -------------------------------------------------------------------------------- /tests/foreman/virtwho/api/test_libvirt_sca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/virtwho/api/test_libvirt_sca.py -------------------------------------------------------------------------------- /tests/foreman/virtwho/api/test_nutanix_sca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/virtwho/api/test_nutanix_sca.py -------------------------------------------------------------------------------- /tests/foreman/virtwho/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/foreman/virtwho/cli/test_esx_sca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/virtwho/cli/test_esx_sca.py -------------------------------------------------------------------------------- /tests/foreman/virtwho/cli/test_hyperv_sca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/virtwho/cli/test_hyperv_sca.py -------------------------------------------------------------------------------- /tests/foreman/virtwho/cli/test_kubevirt_sca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/virtwho/cli/test_kubevirt_sca.py -------------------------------------------------------------------------------- /tests/foreman/virtwho/cli/test_libvirt_sca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/virtwho/cli/test_libvirt_sca.py -------------------------------------------------------------------------------- /tests/foreman/virtwho/cli/test_nutanix_sca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/virtwho/cli/test_nutanix_sca.py -------------------------------------------------------------------------------- /tests/foreman/virtwho/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/virtwho/conftest.py -------------------------------------------------------------------------------- /tests/foreman/virtwho/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/foreman/virtwho/ui/test_esx_sca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/virtwho/ui/test_esx_sca.py -------------------------------------------------------------------------------- /tests/foreman/virtwho/ui/test_hyperv_sca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/virtwho/ui/test_hyperv_sca.py -------------------------------------------------------------------------------- /tests/foreman/virtwho/ui/test_kubevirt_sca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/virtwho/ui/test_kubevirt_sca.py -------------------------------------------------------------------------------- /tests/foreman/virtwho/ui/test_libvirt_sca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/virtwho/ui/test_libvirt_sca.py -------------------------------------------------------------------------------- /tests/foreman/virtwho/ui/test_nutanix_sca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/foreman/virtwho/ui/test_nutanix_sca.py -------------------------------------------------------------------------------- /tests/new_upgrades/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/new_upgrades/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/conftest.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_activation_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_activation_key.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_bookmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_bookmarks.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_capsulecontent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_capsulecontent.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_classparameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_classparameter.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_client.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_computeresource_gce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_computeresource_gce.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_contentview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_contentview.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_discovery.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_errata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_errata.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_hostcontent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_hostcontent.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_hostgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_hostgroup.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_performance_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_performance_tuning.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_provisioningtemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_provisioningtemplate.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_pulp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_pulp.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_puppet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_puppet.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_remoteexecution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_remoteexecution.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_repository.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_role.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_satellitesync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_satellitesync.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_subscription.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_syncplan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_syncplan.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_usergroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_usergroup.py -------------------------------------------------------------------------------- /tests/new_upgrades/test_virtwho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/new_upgrades/test_virtwho.py -------------------------------------------------------------------------------- /tests/robottelo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/robottelo/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/robottelo/conftest.py -------------------------------------------------------------------------------- /tests/robottelo/data/test_dsa.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/robottelo/data/test_dsa.key -------------------------------------------------------------------------------- /tests/robottelo/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/robottelo/test_cli.py -------------------------------------------------------------------------------- /tests/robottelo/test_cli_method_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/robottelo/test_cli_method_calls.py -------------------------------------------------------------------------------- /tests/robottelo/test_datafactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/robottelo/test_datafactory.py -------------------------------------------------------------------------------- /tests/robottelo/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/robottelo/test_decorators.py -------------------------------------------------------------------------------- /tests/robottelo/test_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/robottelo/test_dependencies.py -------------------------------------------------------------------------------- /tests/robottelo/test_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/robottelo/test_enum.py -------------------------------------------------------------------------------- /tests/robottelo/test_func_locker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/robottelo/test_func_locker.py -------------------------------------------------------------------------------- /tests/robottelo/test_func_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/robottelo/test_func_shared.py -------------------------------------------------------------------------------- /tests/robottelo/test_hammer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/robottelo/test_hammer.py -------------------------------------------------------------------------------- /tests/robottelo/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/robottelo/test_helpers.py -------------------------------------------------------------------------------- /tests/robottelo/test_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/robottelo/test_report.py -------------------------------------------------------------------------------- /tests/robottelo/test_shared_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/robottelo/test_shared_resource.py -------------------------------------------------------------------------------- /tests/robottelo/test_ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/robottelo/test_ssh.py -------------------------------------------------------------------------------- /tests/upgrades/__init__.py: -------------------------------------------------------------------------------- 1 | """Placeholder for the package""" 2 | -------------------------------------------------------------------------------- /tests/upgrades/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/conftest.py -------------------------------------------------------------------------------- /tests/upgrades/test_activation_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_activation_key.py -------------------------------------------------------------------------------- /tests/upgrades/test_bookmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_bookmarks.py -------------------------------------------------------------------------------- /tests/upgrades/test_capsulecontent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_capsulecontent.py -------------------------------------------------------------------------------- /tests/upgrades/test_classparameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_classparameter.py -------------------------------------------------------------------------------- /tests/upgrades/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_client.py -------------------------------------------------------------------------------- /tests/upgrades/test_computeresource_gce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_computeresource_gce.py -------------------------------------------------------------------------------- /tests/upgrades/test_contentview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_contentview.py -------------------------------------------------------------------------------- /tests/upgrades/test_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_discovery.py -------------------------------------------------------------------------------- /tests/upgrades/test_errata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_errata.py -------------------------------------------------------------------------------- /tests/upgrades/test_hostcontent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_hostcontent.py -------------------------------------------------------------------------------- /tests/upgrades/test_hostgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_hostgroup.py -------------------------------------------------------------------------------- /tests/upgrades/test_performance_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_performance_tuning.py -------------------------------------------------------------------------------- /tests/upgrades/test_provisioningtemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_provisioningtemplate.py -------------------------------------------------------------------------------- /tests/upgrades/test_puppet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_puppet.py -------------------------------------------------------------------------------- /tests/upgrades/test_remoteexecution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_remoteexecution.py -------------------------------------------------------------------------------- /tests/upgrades/test_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_repository.py -------------------------------------------------------------------------------- /tests/upgrades/test_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_role.py -------------------------------------------------------------------------------- /tests/upgrades/test_satellitesync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_satellitesync.py -------------------------------------------------------------------------------- /tests/upgrades/test_subnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_subnet.py -------------------------------------------------------------------------------- /tests/upgrades/test_subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_subscription.py -------------------------------------------------------------------------------- /tests/upgrades/test_syncplan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_syncplan.py -------------------------------------------------------------------------------- /tests/upgrades/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_user.py -------------------------------------------------------------------------------- /tests/upgrades/test_usergroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_usergroup.py -------------------------------------------------------------------------------- /tests/upgrades/test_virtwho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SatelliteQE/robottelo/HEAD/tests/upgrades/test_virtwho.py --------------------------------------------------------------------------------