Skip to content

Commit fb85b62

Browse files
committed
fix: point Artifact_names to (with migrations) builds to restore CEA-708 output
1 parent 6c93712 commit fb85b62

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

mod_ci/controllers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,8 @@ class Workflow_builds(DeclEnum):
249249
class Artifact_names(DeclEnum):
250250
"""Define CCExtractor GitHub Artifacts names."""
251251

252-
linux = "CCExtractor Linux build"
253-
windows = "CCExtractor Windows x64 Release build"
252+
linux = "CCExtractor Linux build (with migrations)"
253+
windows = "CCExtractor Windows x64 Release build (with migrations)"
254254

255255

256256
def is_valid_commit_hash(commit: Optional[str]) -> bool:

tests/test_ci/test_controllers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4029,7 +4029,7 @@ def _setup_start_test_mocks(self, mock_g, mock_gcp_instance, mock_test_progress,
40294029

40304030
# Mock successful artifact download
40314031
mock_artifact = MagicMock()
4032-
mock_artifact.name = 'CCExtractor Linux build'
4032+
mock_artifact.name = 'CCExtractor Linux build (with migrations)'
40334033
mock_artifact.archive_download_url = 'https://example.com/artifact.zip'
40344034
mock_find_artifact.return_value = mock_artifact
40354035

0 commit comments

Comments
 (0)