File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
tests/test_database_functions Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ services:
18
18
- postgres-data:/var/lib/postgresql/data
19
19
environment :
20
20
POSTGRES_USER : postgres
21
- POSTGRES_DB : postgres
21
+ POSTGRES_DB : dsglib_test
22
22
POSTGRES_PASSWORD : postgres
23
23
ports :
24
- - " 5432 :5432"
24
+ - " 5433 :5432"
25
25
networks :
26
26
- app-network
27
27
@@ -32,7 +32,7 @@ services:
32
32
PGADMIN_DEFAULT_EMAIL : pgadmin@email.com
33
33
PGADMIN_DEFAULT_PASSWORD : pgadmin
34
34
ports :
35
- - " 5050 :80"
35
+ - " 5051 :80"
36
36
depends_on :
37
37
- postgresdbTest
38
38
networks :
Original file line number Diff line number Diff line change 11
11
12
12
# Get the database URL from the environment variable
13
13
database_url = os .getenv (
14
- 'DATABASE_URL' , 'postgresql://postgres:postgres@postgresdbTest:5432/postgres'
14
+ 'DATABASE_URL' , 'postgresql://postgres:postgres@postgresdbTest:5432/dsglib_test'
15
+ # postgres://postgres:postgres@postgresdb:5432/devsetgo_local
15
16
)
16
17
17
18
Base = declarative_base ()
You can’t perform that action at this time.
0 commit comments