Compare commits

...

2 Commits

Author SHA1 Message Date
Logan Markewich 5a1db4727e skip llama-report tests in cicd 2025-04-23 20:36:53 -06:00
Logan Markewich 3954aa28ce skip llama-report tests in cicd 2025-04-23 20:08:14 -06:00
+2 -1
View File
@@ -7,7 +7,8 @@ from llama_cloud_services.report import LlamaReport, ReportClient
# Skip tests if no API key is set
pytestmark = pytest.mark.skipif(
not os.getenv("LLAMA_CLOUD_API_KEY"), reason="No API key provided"
not os.getenv("LLAMA_CLOUD_API_KEY") or os.getenv("CI") == "true",
reason="No API key provided",
)