Skip to content
Draft
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 tests/unit/bases/test_almalinux.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ def mock_get_os_release(mocker):
),
),
],
ids=["default-env", "custom-env"],
)
@pytest.mark.parametrize("no_cdn", [False, True])
@pytest.mark.parametrize(
Expand Down Expand Up @@ -1146,6 +1147,7 @@ def test_ensuresetup_completed_not_setup(status, fake_executor, mock_load):
"http_proxy": "http://foo.bar:8080",
},
],
ids=["default-env", "custom-env"],
)
@pytest.mark.parametrize("cache_path", [None, pathlib.Path("/tmp")])
def test_warmup_overall(
Expand Down
2 changes: 2 additions & 0 deletions tests/unit/bases/test_centos_7.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ def mock_get_os_release(mocker):
),
),
],
ids=["default-env", "custom-env"],
)
@pytest.mark.parametrize("no_cdn", [False, True])
@pytest.mark.parametrize(
Expand Down Expand Up @@ -1082,6 +1083,7 @@ def test_ensure_setup_completed_not_setup(status, fake_executor, mock_load):
"http_proxy": "http://foo.bar:8080",
},
],
ids=["default-env", "custom-env"],
)
@pytest.mark.parametrize("cache_path", [None, pathlib.Path("/tmp")])
def test_warmup_overall(
Expand Down
2 changes: 2 additions & 0 deletions tests/unit/bases/test_ubuntu_buildd.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ def fake_update_commands(fake_process):
),
),
],
ids=["default-env", "custom-env"],
)
@pytest.mark.parametrize("no_cdn", [False, True])
@pytest.mark.parametrize(
Expand Down Expand Up @@ -1269,6 +1270,7 @@ def test_ensure_setup_completed_not_setup(status, fake_executor, mock_load):
"http_proxy": "http://foo.bar:8080",
},
],
ids=["default-env", "custom-env"],
)
@pytest.mark.parametrize("cache_path", [None, pathlib.Path("/tmp")])
def test_warmup_overall(
Expand Down
Loading