Add run lifecycle timestamps - improvments (#2601)

Co-authored-by: Shuchang Zheng <wintonzheng0325@gmail.com>
This commit is contained in:
Prakash Maheshwaran
2025-06-11 23:36:49 -04:00
committed by GitHub
parent 90feb96b0f
commit b5bf9d291f
15 changed files with 138 additions and 1 deletions

View File

@@ -2,12 +2,17 @@ import json
import os
from typing import Any, Optional, cast
import pytest
import requests
from dotenv import load_dotenv
from skyvern.forge import app
from skyvern.forge.sdk.schemas.tasks import TaskRequest
# Skip tests if network access is not available
pytest.skip("requires network access", allow_module_level=True)
# Load environment variables and set up configuration
load_dotenv("./skyvern-frontend/.env")
API_KEY = os.getenv("VITE_SKYVERN_API_KEY")