Skip to content

Commit 6ab00b9

Browse files
Fixes for pytest markers and fixtures (#119)
1 parent 76f3d75 commit 6ab00b9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ def eval_data() -> EvalData:
2424
def hume_api_key() -> str:
2525
api_key = os.getenv("HUME_DEV_API_KEY")
2626
if api_key is None:
27-
raise ValueError("Cannot construct HumeBatchClient, HUME_DEV_API_KEY variable not set.")
27+
raise ValueError("HUME_DEV_API_KEY environment variable is required.")
2828
return api_key

tests/pytest.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ log_cli_level = INFO
44
markers =
55
asyncio: Uses async features
66
batch: Uses the Hume batch API
7-
service: Authenticates with Hume APIs using HUME_PLATFORM_API_KEY environment variable.
7+
service: Authenticates with Hume APIs
88
stream: Uses the Hume streaming API
99
notebook: Example notebook tests

0 commit comments

Comments
 (0)