diff --git a/tests_new/integration_tests/core/environment/global_conftest.py b/tests_new/integration_tests/core/environment/global_conftest.py index 05b9ad718..2b0de0e7f 100644 --- a/tests_new/integration_tests/core/environment/global_conftest.py +++ b/tests_new/integration_tests/core/environment/global_conftest.py @@ -10,7 +10,7 @@ log = logging.getLogger(__name__) -@poller(check_success=lambda env: not re.match(r'.*IN_PROGRESS|PENDING', env.stack.status, re.IGNORECASE)) +@poller(check_success=lambda env: not re.match(r'.*IN_PROGRESS|PENDING', env.stack.status, re.IGNORECASE), timeout=600) def check_env_ready(client, env_uri): env = get_environment(client, env_uri) log.info(f'polling {env_uri=}, new {env.stack.status=}') diff --git a/tests_new/integration_tests/core/organizations/test_organization.py b/tests_new/integration_tests/core/organizations/test_organization.py index 7f1a270d2..d9c72bd1c 100644 --- a/tests_new/integration_tests/core/organizations/test_organization.py +++ b/tests_new/integration_tests/core/organizations/test_organization.py @@ -183,4 +183,5 @@ def test_archive_organization_organization_with_unauthorized_team(client3, org1) org1.organizationUri, ) + # TODO: list_organization_environments as part of environment tests