Skip to content

Commit

Permalink
add missing test wait
Browse files Browse the repository at this point in the history
  • Loading branch information
david-leifker committed Dec 14, 2024
1 parent f34a12f commit 83782fe
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions smoke-test/tests/utilities/concurrent_openapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import glob
import json
import logging
import time

from deepdiff import DeepDiff

Expand Down Expand Up @@ -51,6 +52,9 @@ def evaluate_test(auth_session, test_name, test_data):
description = req_resp["request"].pop("description")
else:
description = None
if "wait" in req_resp["request"]:
time.sleep(req_resp["request"]["wait"])
continue
url = req_resp["request"]["url"]
actual_resp = execute_request(auth_session, req_resp["request"])
try:
Expand Down

0 comments on commit 83782fe

Please sign in to comment.