]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
tests : fix running server tests on windows (#26889)
authorGeorgi Gerganov <redacted>
Tue, 11 Aug 2026 09:07:15 +0000 (12:07 +0300)
committerGitHub <redacted>
Tue, 11 Aug 2026 09:07:15 +0000 (12:07 +0300)
.github/workflows/server.yml

index d5abf1d236687ba7664bf51aac9d7eb47bed8510..9fb4b4ba102fbf183e8406fc30b1d5939e683d44 100644 (file)
@@ -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