server : use pytest-xdist for server tests - #28298
Merged
Merged
Conversation
This commit adds pytest-xdist to the server tests. This is pytest plugin that distributes test execution across multiple CPU cores. Assisted-by: pi:llama.cpp/qwen3.8-27B Refs: ggml-org#26734 (comment)
ggerganov
reviewed
Sep 3, 2026
Member
Author
|
I think we might be able to use |
danbev
marked this pull request as ready for review
September 3, 2026 12:07
CISC
approved these changes
Sep 3, 2026
ServeurpersoCom
approved these changes
Sep 3, 2026
fewtarius
pushed a commit
to fewtarius/CachyLLama
that referenced
this pull request
Sep 5, 2026
* server : use pytest-xdist for server tests This commit adds pytest-xdist to the server tests. This is pytest plugin that distributes test execution across multiple CPU cores. Assisted-by: pi:llama.cpp/qwen3.8-27B Refs: ggml-org#26734 (comment) * remove server_base_port and BASE_PORT * use worksteal and pytest builting tmp_path
thecodacus
pushed a commit
to thecodacus/llama.cpp
that referenced
this pull request
Sep 7, 2026
* server : use pytest-xdist for server tests This commit adds pytest-xdist to the server tests. This is pytest plugin that distributes test execution across multiple CPU cores. Assisted-by: pi:llama.cpp/qwen3.8-27B Refs: ggml-org#26734 (comment) * remove server_base_port and BASE_PORT * use worksteal and pytest builting tmp_path
danbev
added a commit
that referenced
this pull request
Sep 8, 2026
* ci : add PYTEST_WORKERS=1 to fix server-self-hosted job This commit adds the `PYTEST_WORKERS=1` environment variable to the hf-jobs-t4-small:cuda13 runner steps. This is an attempt to address CI failure of this job that I might have introduced in Commit 42f0225 ("server : use pytest-xdist for server tests (#28298)"). Refs: https://github.com/ggml-org/llama.cpp/actions/runs/34126971262/job/101757819134 * apply same changes to server-metal steps
x1250
pushed a commit
to x1250/llama.cpp
that referenced
this pull request
Sep 9, 2026
* server : use pytest-xdist for server tests This commit adds pytest-xdist to the server tests. This is pytest plugin that distributes test execution across multiple CPU cores. Assisted-by: pi:llama.cpp/qwen3.8-27B Refs: ggml-org#26734 (comment) * remove server_base_port and BASE_PORT * use worksteal and pytest builting tmp_path
x1250
pushed a commit
to x1250/llama.cpp
that referenced
this pull request
Sep 9, 2026
* ci : add PYTEST_WORKERS=1 to fix server-self-hosted job This commit adds the `PYTEST_WORKERS=1` environment variable to the hf-jobs-t4-small:cuda13 runner steps. This is an attempt to address CI failure of this job that I might have introduced in Commit 42f0225 ("server : use pytest-xdist for server tests (ggml-org#28298)"). Refs: https://github.com/ggml-org/llama.cpp/actions/runs/34126971262/job/101757819134 * apply same changes to server-metal steps
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.
Overview
This commit adds pytest-xdist to the server tests. This is pytest plugin that distributes test execution across multiple CPU cores.
Additional information
server.yml workflow comparision:
Refs: #26734 (comment)
Requirements