Chore: Fixes #12500: Trying to fix random "concurrent map writes" error on CI by disabling parallelism

This commit is contained in:
Laurent Cozic 2025-06-12 21:22:16 +01:00
parent 4777bd393c
commit a79409dfa8

View File

@ -117,7 +117,7 @@ if [ "$RUN_TESTS" == "1" ]; then
# On Linux, we run the Joplin Server tests using PostgreSQL # On Linux, we run the Joplin Server tests using PostgreSQL
if [ "$IS_LINUX" == "1" ]; then if [ "$IS_LINUX" == "1" ]; then
echo "Running Joplin Server tests using PostgreSQL..." echo "Running Joplin Server tests using PostgreSQL..."
sudo docker compose --file docker-compose.db-dev.yml up -d sudo docker compose --parallel 1 --file docker-compose.db-dev.yml up -d
cmdResult=$? cmdResult=$?
if [ $cmdResult -ne 0 ]; then if [ $cmdResult -ne 0 ]; then
exit $cmdResult exit $cmdResult