-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
[storage][test] fix integration by double-quoting file patterns #32584
[storage][test] fix integration by double-quoting file patterns #32584
Conversation
The recent Mocha upgrades broke storage integration tests on Windows, likely due to their upgrade of yargs dependency. With single quotes, we now get errors like >Error: No test files found: "'dist-esm/storage-file-share/test/**/*.spec.js'" This PR changes to use escaped doubled quotes in the scripts.
/azp run js - storage-blob - tests |
/azp run js - storage-queue - tests |
/azp run js - storage-file-share - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
1 similar comment
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run js - storage-file-datalake - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
1 similar comment
Azure Pipelines successfully started running 1 pipeline(s). |
API change check API changes are not detected in this pull request. |
Tests failures exist before this PR. |
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.
Changes look good.
Would prefer logging an issue for the failing quantum-jobs tests and disable it's tests or CI here.
Logged #32608 |
/check-enforcer override |
The recent Mocha upgrades broke storage integration tests on Windows, likely due to their upgrade of yargs dependency. With single quotes, we now get errors like
This PR changes to use escaped doubled quotes in the scripts.