Skip to content

Commit

Permalink
Remove slow timeout from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cjrh committed Mar 29, 2024
1 parent 30b97f6 commit 6e9f9e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_pg.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def test_pg():
with new_container(
image_name='postgres:alpine',
ports={'5432/tcp': port},
ready_test=lambda: pg_ready('127.0.0.1', port, timeout=20000),
ready_test=lambda: pg_ready('127.0.0.1', port),
# Travis CI fails otherwise :`(
docker_api_version='1.24',
environment={'POSTGRES_PASSWORD': 'password'}
Expand Down

0 comments on commit 6e9f9e9

Please sign in to comment.