Skip to content

Commit 116d920

Browse files
committed
Used new postgres adapter in tests
1 parent 08054ec commit 116d920

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/config_3_with_domain_and_https/fractal_server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
DEPLOYMENT_TYPE=testing
55
JWT_SECRET_KEY=XXX
66
JWT_EXPIRE_SECONDS=80000
7-
DB_ENGINE=postgres
7+
DB_ENGINE=postgres-psycopg
88
POSTGRES_USER=XXX
99
POSTGRES_HOST=XXX
1010
POSTGRES_DB=XXX

examples/config_4_with_domain_and_https/fractal_server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
DEPLOYMENT_TYPE=testing
55
JWT_SECRET_KEY=XXX
66
JWT_EXPIRE_SECONDS=80000
7-
DB_ENGINE=postgres
7+
DB_ENGINE=postgres-psycopg
88
POSTGRES_USER=XXX
99
POSTGRES_HOST=XXX
1010
POSTGRES_DB=XXX

tests/.fractal_server.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
DEPLOYMENT_TYPE=testing
22
JWT_SECRET_KEY=somethingverysecret
3-
DB_ENGINE=postgres
3+
DB_ENGINE=postgres-psycopg
44
POSTGRES_DB=fractal_test
55
POSTGRES_USER=postgres
66
POSTGRES_PASSWORD=postgres

tests/start-test-server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [ ! -d "$fractal_server_test_path" ]; then
2626
python3 -m venv myenv
2727
. myenv/bin/activate
2828
pip install "fractal-server==$1"
29-
pip install fractal-server[postgres]
29+
pip install fractal-server[postgres-psycopg-binary]
3030
fractalctl set-db
3131
else
3232
cd "$fractal_server_test_path"

0 commit comments

Comments
 (0)