Skip to content

Commit

Permalink
fix: Increase time to wait for mysql to spin up. (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanCardin committed May 23, 2023
1 parent df55dde commit 5d94aea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pytest-mock-resources"
version = "2.6.12"
version = "2.6.13"
description = "A pytest plugin for easily instantiating reproducible mock resources."
authors = [
"Omar Khan <oakhan3@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion src/pytest_mock_resources/fixture/mysql.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def pmr_mysql_config():

@pytest.fixture(scope="session")
def pmr_mysql_container(pytestconfig, pmr_mysql_config):
yield from get_container(pytestconfig, pmr_mysql_config)
yield from get_container(pytestconfig, pmr_mysql_config, interval=1, retries=60)


def create_mysql_fixture(
Expand Down

0 comments on commit 5d94aea

Please sign in to comment.