Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/actions/lbox-matrix/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26811,6 +26811,7 @@ const core = __nccwpck_require__(8611);
try {
const files = JSON.parse(core.getInput('files-changed'));
const startingMatrix = [
// To be updated with the new API keys
{
"python-version": "3.9",
"api-key": "STAGING_LABELBOX_API_KEY_3",
Expand Down
2 changes: 1 addition & 1 deletion libs/labelbox/tests/integration/test_api_keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def test_create_api_key_failed(client):
client.create_api_key(
name=f"Test Key {uuid.uuid4()}",
user=client.get_user().email,
role="LABELER", # This string should fail since role strings are case sensitive
role="LABELER", # This string should fail because role strings are case sensitive
validity=5,
time_unit=TimeUnit.MINUTE,
)
Expand Down
Loading