the two jobs will have the same friendly name: "py38 [macos]". Having the same friendly name is unhelpful on the Azure Pipelines website (because it's difficult to distinguish jobs) and horrible on GitHub (because if multiple jobs have the same friendly name, only one is shown).
This PR changes the friendly name to use the name variable if it is specified. In the example above, the friendly names would be "py38_n4 [macos]" and "py38_n1 [macos]".
Currently, the job friendly name doesn't use the
name
variable even if it is specified. For example, if theazure-pipelines.yml
looks like:the two jobs will have the same friendly name: "py38 [macos]". Having the same friendly name is unhelpful on the Azure Pipelines website (because it's difficult to distinguish jobs) and horrible on GitHub (because if multiple jobs have the same friendly name, only one is shown).
This PR changes the friendly name to use the
name
variable if it is specified. In the example above, the friendly names would be "py38_n4 [macos]" and "py38_n1 [macos]".