tests : fix running server tests on windows (#26889)

This commit is contained in:
Georgi Gerganov
2026-08-11 12:07:15 +03:00
committed by GitHub
parent 153d324bcf
commit 9afff1b748
+4 -2
View File
@@ -167,15 +167,17 @@ jobs:
- name: Tests - name: Tests
id: server_integration_tests id: server_integration_tests
shell: bash
run: | run: |
cd tools/server/tests cd tools/server/tests
$env:PYTHONIOENCODING = ":replace" export PYTHONIOENCODING=":replace"
./tests.sh ./tests.sh
- name: Slow tests - name: Slow tests
id: server_integration_tests_slow id: server_integration_tests_slow
if: ${{ github.event.schedule || github.event.inputs.slow_tests == 'true' }} if: ${{ github.event.schedule || github.event.inputs.slow_tests == 'true' }}
shell: bash
run: | run: |
cd tools/server/tests cd tools/server/tests
$env:SLOW_TESTS = "1" export SLOW_TESTS="1"
./tests.sh ./tests.sh