Skip to content

Commit

Permalink
retries and delay_s values should be ints (#753)
Browse files Browse the repository at this point in the history
  • Loading branch information
addyess authored Oct 19, 2024
1 parent 499a2db commit 84a1769
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/tests/test_util/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
DIR = Path(__file__).absolute().parent

# The following defaults are used to define how long to wait for a condition to be met.
DEFAULT_WAIT_RETRIES = os.getenv("TEST_DEFAULT_WAIT_RETRIES") or 30
DEFAULT_WAIT_DELAY_S = os.getenv("TEST_DEFAULT_WAIT_DELAY_S") or 5
DEFAULT_WAIT_RETRIES = int(os.getenv("TEST_DEFAULT_WAIT_RETRIES") or 30)
DEFAULT_WAIT_DELAY_S = int(os.getenv("TEST_DEFAULT_WAIT_DELAY_S") or 5)

MANIFESTS_DIR = DIR / ".." / ".." / "templates"

Expand Down

0 comments on commit 84a1769

Please sign in to comment.