Skip to content
Open
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
4 changes: 2 additions & 2 deletions mod_ci/controllers.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,8 @@ class Workflow_builds(DeclEnum):
class Artifact_names(DeclEnum):
"""Define CCExtractor GitHub Artifacts names."""

linux = "CCExtractor Linux build"
windows = "CCExtractor Windows x64 Release build"
linux = "CCExtractor Linux build (with migrations)"
windows = "CCExtractor Windows x64 Release build (with migrations)"


def is_valid_commit_hash(commit: Optional[str]) -> bool:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_ci/test_controllers.py
Original file line number Diff line number Diff line change
Expand Up @@ -4029,7 +4029,7 @@ def _setup_start_test_mocks(self, mock_g, mock_gcp_instance, mock_test_progress,

# Mock successful artifact download
mock_artifact = MagicMock()
mock_artifact.name = 'CCExtractor Linux build'
mock_artifact.name = 'CCExtractor Linux build (with migrations)'
mock_artifact.archive_download_url = 'https://example.com/artifact.zip'
mock_find_artifact.return_value = mock_artifact

Expand Down
Loading