aboutsummaryrefslogtreecommitdiff
path: root/ci/run_tests.sh
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2025-06-08 10:45:29 +0200
committerDaniel Schadt <kingdread@gmx.de>2025-06-08 10:45:29 +0200
commit0e0b63f08e6c5c52df5d12817f78333cca105154 (patch)
tree9e7a5cd6e5bf491d4b63530a8a19090015ab09fe /ci/run_tests.sh
parentf95e1394883eb0e1c763b97e403df7c25a08501e (diff)
downloadfietsboek-0e0b63f08e6c5c52df5d12817f78333cca105154.tar.gz
fietsboek-0e0b63f08e6c5c52df5d12817f78333cca105154.tar.bz2
fietsboek-0e0b63f08e6c5c52df5d12817f78333cca105154.zip
fix postgres connection URL in tests
Diffstat (limited to 'ci/run_tests.sh')
-rwxr-xr-xci/run_tests.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/ci/run_tests.sh b/ci/run_tests.sh
index 1ba2836..adf69b7 100755
--- a/ci/run_tests.sh
+++ b/ci/run_tests.sh
@@ -33,7 +33,7 @@ case "$DB" in
"postgres")
setup_postgres
- sed -i 's|^sqlalchemy.url = .*$|sqlalchemy.url = postgresql://postgres:postgres@localhost/postgres"|' testing.ini
+ sed -i 's|^sqlalchemy.url = .*$|sqlalchemy.url = postgresql://postgres:postgres@localhost/postgres|' testing.ini
;;
*)
@@ -42,6 +42,7 @@ case "$DB" in
;;
esac
+pip install tox
setup_playwright
setup_redis
tox -e python -- --browser firefox