-
Notifications
You must be signed in to change notification settings - Fork 177
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix broken relative paths in matrix-generator
tests and samples + make the tests runnable by common-tests/ci.yml
.
#5095
Conversation
matrix-generator
tests and samples.matrix-generator
tests and samples + make the tests runnable by common-tests/ci.yml
.
The following pipelines have been queued for testing: |
0e70f5c
to
846e620
Compare
The following pipelines have been queued for testing: |
b325e67
to
f2f92c0
Compare
f2f92c0
to
cc2d5e1
Compare
The following pipelines have been queued for testing: |
The following pipelines have been queued for testing: |
@@ -380,7 +380,7 @@ function ProcessImport([MatrixParameter[]]$matrix, [String]$selection, [Array]$n | |||
} | |||
|
|||
if (!(Test-Path $importPath)) { | |||
Write-Error "`$IMPORT path '$importPath' does not exist." | |||
Write-Error "`$IMPORT path '$importPath' does not exist. Current dir: $(Get-Location)" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this debugging information something you plan to sync in eng/common or is it only temporary to help with getting these tests working?
Hello @azure-sdk! Because this pull request has the p.s. you can customize the way I help with merging this pull request, such as holding this pull request until a specific person approves. Simply @mention me (
|
This PR fixes paths I forgot to update when I did this PR:
eng/common
#5027And as such this PR contributes to addressing:
It also adds
UnitTest
tags to thematrix-generator
tests socommon-tests/ci.yml
pipeline executes them.Related work
matrix-generator
tests #5098