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.
@jerome3o-anthropic @jspahrsummers not able to add you guys as reviewer, please help me out here.
Ticket: #736
Added pytest configuration to enable parallel test execution and disable logging during tests for faster and cleaner test runs.
Motivation and Context
Running tests sequentially was causing longer test suite execution times, slowing down development and CI feedback. Enabling parallel test runs with multiple workers improves overall testing speed and efficiency.
How Has This Been Tested?
Tests were run locally with the new configuration enabled. Verified that:
Breaking Changes
No breaking changes. This update only affects how tests are executed, not the application code or configurations.
Types of changes
Checklist
Additional context
Uses pytest-xdist plugin for parallel test execution with --numprocesses 4
Disables logging during tests to reduce noise and improve test output clarity.