Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes for 6.15.z new branch #13168

Merged
merged 1 commit into from
Nov 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ updates:
labels:
- "CherryPick"
- "dependencies"
- "6.15.z"
- "6.14.z"
- "6.13.z"
- "6.12.z"
Expand All @@ -24,6 +25,7 @@ updates:
labels:
- "CherryPick"
- "dependencies"
- "6.15.z"
- "6.14.z"
- "6.13.z"
- "6.12.z"
31 changes: 0 additions & 31 deletions .github/workflows/dispatch_release.yml

This file was deleted.

6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ testimony==2.3.0
wait-for==1.2.0
wrapanapi==3.6.0

# Get airgun, nailgun and upgrade from master
git+https://github.com/SatelliteQE/airgun.git@master#egg=airgun
git+https://github.com/SatelliteQE/nailgun.git@master#egg=nailgun
# Get airgun, nailgun and upgrade from 6.15.z
git+https://github.com/SatelliteQE/airgun.git@6.15.z#egg=airgun
git+https://github.com/SatelliteQE/nailgun.git@6.15.z#egg=nailgun
--editable .
4 changes: 2 additions & 2 deletions robottelo/constants/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Colored(Box):
# This should be updated after each version branch
SATELLITE_VERSION = "6.15"
SATELLITE_OS_VERSION = "8"
SAT_NON_GA_VERSIONS = ['6.14', '6.15']
SAT_NON_GA_VERSIONS = ['6.15']

# Default system ports
HTTPS_PORT = '443'
Expand Down Expand Up @@ -171,7 +171,7 @@ class Colored(Box):
AZURERM_VM_SIZE_DEFAULT = 'Standard_B1s'
AZURERM_PREMIUM_OS_Disk = True
AZURERM_FILE_URI = (
'https://raw.githubusercontent.com/SatelliteQE/robottelo/master/tests/foreman/data/uri.sh'
'https://raw.githubusercontent.com/SatelliteQE/robottelo/6.15.z/tests/foreman/data/uri.sh'
)

OPERATING_SYSTEMS = entities._OPERATING_SYSTEMS
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name='robottelo',
version='0.1.0',
version='6.15.0',
description='Robottelo is a test suite which exercises The Foreman.',
long_description=README,
author='Satellite QE Team',
Expand Down
2 changes: 0 additions & 2 deletions tests/foreman/api/test_capsulecontent.py
Original file line number Diff line number Diff line change
Expand Up @@ -1458,7 +1458,6 @@ def test_positive_capsule_sync_openstack_container_repos(

module_capsule_configured.wait_for_sync()

@pytest.mark.stream
@pytest.mark.parametrize(
'repos_collection',
[
Expand Down Expand Up @@ -1597,7 +1596,6 @@ def test_positive_content_counts_for_mixed_cv(
[repo.content_counts.get(key) == cnt['counts'].get(key) for key in common_keys]
)

@pytest.mark.stream
@pytest.mark.order(1)
def test_positive_content_counts_blank_update(
self,
Expand Down
1 change: 0 additions & 1 deletion tests/foreman/api/test_contentviewfilter.py
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,6 @@ def test_negative_update_repo(self, module_product, sync_repo, content_view, tar
with pytest.raises(HTTPError):
cvf.update(['repository'])

@pytest.mark.stream
@pytest.mark.tier2
@pytest.mark.parametrize(
'filter_type', ['erratum', 'package_group', 'rpm', 'modulemd', 'docker']
Expand Down
1 change: 0 additions & 1 deletion tests/foreman/destructive/test_infoblox.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ def test_plugin_installation(target_sat, command_args, command_opts, rpm_command
assert target_sat.execute(rpm_command).status == 0


@pytest.mark.stream
@pytest.mark.e2e
@pytest.mark.parametrize('module_sync_kickstart_content', [8], indirect=True)
def test_infoblox_end_to_end(
Expand Down
1 change: 0 additions & 1 deletion tests/foreman/maintain/test_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ def test_positive_service_stop_start(sat_maintain):
assert result.status == 0


@pytest.mark.stream
@pytest.mark.upgrade
@pytest.mark.include_capsule
@pytest.mark.usefixtures('start_satellite_services')
Expand Down
1 change: 0 additions & 1 deletion tests/foreman/ui/test_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,6 @@ def test_positive_entries_per_page(session, setting_update):


@pytest.mark.tier2
@pytest.mark.stream
def test_positive_setting_display_fqdn_for_hosts(session, target_sat):
"""Verify setting display_fqdn_for_hosts set as Yes/No, and FQDN is used for host's name
if it's set to Yes else not, according to setting set.
Expand Down