Skip to content

Commit b29e7d2

Browse files
committed
fix: correct sleep duration in GitHub Actions to 30 seconds
1 parent fe84864 commit b29e7d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ def wait_sometime():
429429

430430
if os.getenv("GITHUB_ACTIONS") == "true":
431431
logger.info("Running inside GitHub Actions. Sleeping for 30 seconds...")
432-
time.sleep(3600) # Sleep for 30 seconds
432+
time.sleep(30) # Sleep for 30 seconds
433433
else:
434434
logger.info("Running on the local machine. Press Enter to continue...")
435435
input() # Wait for key press

0 commit comments

Comments
 (0)