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
9 changes: 7 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ jobs:
# TODO: create a staging environment (develop)
# we only test against prod right now because the merges are right into
# the main branch which is develop right now
LABELBOX_TEST_ENVIRON: "PROD"
LABELBOX_TEST_ENVIRON: "prod"
#
# randall+staging-python@labelbox.com
#LABELBOX_TEST_API_KEY: ${{ secrets.STAGING_LABELBOX_API_KEY }}
#LABELBOX_TEST_ENDPOINT: "https://staging-api.labelbox.com/graphql"
#LABELBOX_TEST_ENVIRON: "staging"
run: |
tox -- -svv
tox -- -svv
1 change: 1 addition & 0 deletions labelbox/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name = "labelbox"

from labelbox.client import Client
from labelbox.schema.bulk_import_request import BulkImportRequest
from labelbox.schema.project import Project
from labelbox.schema.dataset import Dataset
from labelbox.schema.data_row import DataRow
Expand Down
1 change: 1 addition & 0 deletions labelbox/schema/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import labelbox.schema.asset_metadata
import labelbox.schema.bulk_import_request
import labelbox.schema.benchmark
import labelbox.schema.data_row
import labelbox.schema.dataset
Expand Down
Loading