add support for parallel test run#726
Closed
lk-naath wants to merge 1 commit intomodelcontextprotocol:mainfrom
lk-naath:parallel-test-run
Closed
add support for parallel test run#726lk-naath wants to merge 1 commit intomodelcontextprotocol:mainfrom lk-naath:parallel-test-run
lk-naath wants to merge 1 commit intomodelcontextprotocol:mainfrom
lk-naath:parallel-test-run
Conversation
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.
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.