From: Georgi Gerganov Date: Tue, 11 Aug 2026 09:07:15 +0000 (+0300) Subject: tests : fix running server tests on windows (#26889) X-Git-Tag: upstream/0.0.10438~73 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=9afff1b7483ddc5a78a7738025b135e0f013d50d;p=pkg%2Fggml%2Fsources%2Fllama.cpp tests : fix running server tests on windows (#26889) --- diff --git a/.github/workflows/server.yml b/.github/workflows/server.yml index d5abf1d23..9fb4b4ba1 100644 --- a/.github/workflows/server.yml +++ b/.github/workflows/server.yml @@ -167,15 +167,17 @@ jobs: - name: Tests id: server_integration_tests + shell: bash run: | cd tools/server/tests - $env:PYTHONIOENCODING = ":replace" + export PYTHONIOENCODING=":replace" ./tests.sh - name: Slow tests id: server_integration_tests_slow if: ${{ github.event.schedule || github.event.inputs.slow_tests == 'true' }} + shell: bash run: | cd tools/server/tests - $env:SLOW_TESTS = "1" + export SLOW_TESTS="1" ./tests.sh