Skip to content

Commit dda7618

Browse files
authored
fix: point Artifact_names to (with migrations) builds to restore CEA-708 output (#1122)
1 parent e46e091 commit dda7618

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
@@ -248,8 +248,8 @@ class Workflow_builds(DeclEnum):
248248
class Artifact_names(DeclEnum):
249249
"""Define CCExtractor GitHub Artifacts names."""
250250

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

254254

255255
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)