]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commit
docs : Fix duplicated file extension in test command (#11935)
authorxiaobing318 <redacted>
Tue, 18 Feb 2025 09:12:49 +0000 (17:12 +0800)
committerGitHub <redacted>
Tue, 18 Feb 2025 09:12:49 +0000 (10:12 +0100)
commit09aaf4f1f5b69b5173b7fcd24eab96729f6b242a
tree1bfabe532ff0bf466f03d5f8acc5a69755d6ad06
parent73e2ed3ce3492d3ed70193dd09ae8aa44779651d
docs : Fix duplicated file extension in test command (#11935)

This commit fixes an issue in the llama.cpp project where the command for testing the llama-server object contained a duplicated file extension. The original command was:
./tests.sh unit/test_chat_completion.py.py -v -x
It has been corrected to:
./tests.sh unit/test_chat_completion.py -v -x
This change ensures that the test script correctly locates and executes the intended test file, preventing test failures due to an incorrect file name.
examples/server/tests/README.md