ci: Fix redis port of redis-cli command
continuous-integration/drone/push Build was killed Details

pull/35/head
Inex Code 2023-07-17 19:45:00 +03:00
parent 8805f73812
commit 7fe802eb1d
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ steps:
- kill $(ps aux | grep 'redis-server 127.0.0.1:6389' | awk '{print $2}') || true
- redis-server --bind 127.0.0.1 --port 6389 >/dev/null &
# We do not care about persistance on CI
- redis-cli config set stop-writes-on-bgsave-error no
- redis-cli -h 127.0.0.1 -p 6389 config set stop-writes-on-bgsave-error no
- coverage run -m pytest -q
- coverage xml
- sonar-scanner -Dsonar.projectKey=SelfPrivacy-REST-API -Dsonar.sources=. -Dsonar.host.url=http://analyzer.lan:9000 -Dsonar.login="$SONARQUBE_TOKEN"