fix: E2E testy přepnuty na json storage, odstraněna Redis služba

redis/redis-stack-server:7.2.0-RC3 havaroval v CI kvůli chybě
inicializace RedisAI modulu, takže se server nikdy nepřipojil
a webServer timeout vyprchával. E2E testy testují chování aplikace,
ne storage backend – json storage stačí.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-29 18:45:26 +02:00
parent d3224a36d5
commit 467e3c155a
+1 -9
View File
@@ -8,12 +8,6 @@ variables:
when: when:
- event: [push, pull_request] - event: [push, pull_request]
services:
redis:
image: redis/redis-stack-server:7.2.0-RC3
environment:
REDIS_ARGS: "--save '' --loglevel warning"
steps: steps:
- name: Generate TypeScript types - name: Generate TypeScript types
image: *node_image image: *node_image
@@ -76,9 +70,7 @@ steps:
NODE_ENV: test NODE_ENV: test
JWT_SECRET: test-secret-min-32-chars-aaaaaaa! JWT_SECRET: test-secret-min-32-chars-aaaaaaa!
MOCK_DATA: "true" MOCK_DATA: "true"
STORAGE: redis STORAGE: json
REDIS_HOST: redis
REDIS_PORT: "6379"
HTTP_REMOTE_USER_ENABLED: "true" HTTP_REMOTE_USER_ENABLED: "true"
HTTP_REMOTE_USER_HEADER_NAME: remote-user HTTP_REMOTE_USER_HEADER_NAME: remote-user
HTTP_REMOTE_TRUSTED_IPS: "127.0.0.1,::1,::ffff:127.0.0.1" HTTP_REMOTE_TRUSTED_IPS: "127.0.0.1,::1,::ffff:127.0.0.1"