CHORE: Disable scheduled Azure SQL tests due to limited subscription availability#584
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR temporarily disables the Azure SQL Database test jobs in the PR validation pipeline by forcing the schedule gate to always set shouldRunAzureSQL=false, preventing dependent Azure SQL jobs from running while subscription capacity is limited.
Changes:
- Force
CheckAzureSQLScheduleto always outputshouldRunAzureSQL=false. - Add inline messaging and commented instructions for how to re-enable the original conditional logic later.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Temporarily disable all Azure SQL Database test jobs including: - CheckAzureSQLSchedule (schedule check job) - PytestOnWindows_AzureSQL - PytestOnMacOS_AzureSQL - PytestOnLinux_AzureSQL All jobs are commented out and will be skipped until re-enabled. To re-enable: Uncomment all jobs in the Azure SQL section.
0f9e339 to
feb24dd
Compare
bewithgaurav
approved these changes
May 15, 2026
jahnvi480
approved these changes
May 15, 2026
📊 Code Coverage Report
Diff CoverageDiff: main...HEAD, staged and unstaged changesNo lines with coverage information in this diff. 📋 Files Needing Attention📉 Files with overall lowest coverage (click to expand)mssql_python.pybind.build._deps.simdutf-src.src.haswell.implementation.cpp: 0.4%
mssql_python.pybind.build._deps.simdutf-src.src.implementation.cpp: 6.7%
mssql_python.pybind.build._deps.simdutf-src.include.simdutf.implementation.h: 10.4%
mssql_python.pybind.build._deps.simdutf-src.include.simdutf.scalar.utf16_to_utf8.utf16_to_utf8.h: 25.3%
mssql_python.pybind.logger_bridge.cpp: 59.2%
mssql_python.pybind.ddbc_bindings.h: 59.7%
mssql_python.pybind.build._deps.simdutf-src.include.simdutf.internal.isadetection.h: 65.3%
mssql_python.row.py: 70.5%
mssql_python.pybind.logger_bridge.hpp: 70.8%
mssql_python.pybind.ddbc_bindings.cpp: 74.2%🔗 Quick Links
|
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.
Temporarily disable Azure SQL Database tests that run on a 15-day schedule. The tests will be skipped until re-enabled.
To re-enable: Uncomment the conditional logic in CheckAzureSQLSchedule job.
This affects:
Work Item / Issue Reference
Summary
This pull request temporarily disables the execution of Azure SQL tests in the PR validation pipeline. The logic that conditionally enabled these tests based on the date or an environment variable has been commented out, and a message now clearly indicates that the tests are disabled for now.
eng/pipelines/pr-validation-pipeline.ymlhas been commented out, so the tests will always be skipped regardless of the day or theENABLE_AZURE_SQLenvironment variable. An explanatory message is printed, and instructions are provided for re-enabling the tests in the future.