We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76f3d75 commit 6ab00b9Copy full SHA for 6ab00b9
tests/conftest.py
@@ -24,5 +24,5 @@ def eval_data() -> EvalData:
24
def hume_api_key() -> str:
25
api_key = os.getenv("HUME_DEV_API_KEY")
26
if api_key is None:
27
- raise ValueError("Cannot construct HumeBatchClient, HUME_DEV_API_KEY variable not set.")
+ raise ValueError("HUME_DEV_API_KEY environment variable is required.")
28
return api_key
tests/pytest.ini
@@ -4,6 +4,6 @@ log_cli_level = INFO
4
markers =
5
asyncio: Uses async features
6
batch: Uses the Hume batch API
7
- service: Authenticates with Hume APIs using HUME_PLATFORM_API_KEY environment variable.
+ service: Authenticates with Hume APIs
8
stream: Uses the Hume streaming API
9
notebook: Example notebook tests
0 commit comments