Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
Updates the test pipeline template to use a customizable job display name and refactors the Python version matrix keys for readability
- Added
displayNameusing ajob_nameparameter - Renamed matrix entries from
Python39/Python310/Python311toPython 3.9/3.10/3.11
Comments suppressed due to low confidence (2)
azure-pipelines-templates/run-tests.yml:40
- The template now references
parameters.job_name, but it isn't defined in this file. Either add ajob_nameparameter or revert to using the existingnameparameter to avoid broken references.
displayName: ${{ parameters.job_name }}
azure-pipelines-templates/run-tests.yml:48
- Matrix keys with spaces and dots may generate invalid job identifiers in Azure Pipelines. Consider using identifier-friendly keys (e.g.,
Python39) and moving the human-readable name into adisplayNamesetting.
Python 3.9:
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR improves the readability of the CI matrix by renaming Python version keys to include dots and spaces, and updates related comments.
- Updated comment examples to show version names with spaces and dots
- Renamed strategy matrix keys from
Python39,Python310,Python311toPython 3.9,Python 3.10,Python 3.11 - Adjusted comments above the job definition to match the new naming format
carlos-villavicencio-adsk
approved these changes
Jun 3, 2025
eduardoChaucaGallegos
pushed a commit
that referenced
this pull request
Jul 15, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates the
azure-pipelines/tests.ymlfile to improve readability by renaming matrix keys for Python versions.Relates to shotgunsoftware/sg-jira-bridge#93