e0e362d700
SDK Tests / SDK CI (push) Blocked by required conditions
SDK Tests / changes (push) Successful in 2m29s
Real E2E Tests / changes (push) Successful in 2m29s
SDK Tests / Python SDK Tests (sandbox) (push) Waiting to run
SDK Tests / CLI Quality (push) Waiting to run
SDK Tests / CLI Tests (push) Waiting to run
SDK Tests / Python SDK Quality (code-interpreter) (push) Waiting to run
SDK Tests / Python SDK Quality (sandbox) (push) Waiting to run
SDK Tests / Python SDK Tests (code-interpreter) (push) Waiting to run
SDK Tests / JavaScript SDK Quality And Tests (code-interpreter) (push) Waiting to run
SDK Tests / JavaScript SDK Quality And Tests (sandbox) (push) Waiting to run
SDK Tests / Kotlin SDK Quality And Tests (sandbox) (push) Waiting to run
SDK Tests / Kotlin SDK Quality And Tests (code-interpreter) (push) Waiting to run
SDK Tests / C# SDK Quality And Tests (code-interpreter) (push) Waiting to run
SDK Tests / C# SDK Quality And Tests (sandbox) (push) Waiting to run
SDK Tests / Go SDK Quality And Tests (push) Waiting to run
Deploy Docs Pages / build (push) Has been cancelled
Deploy Docs Pages / deploy (push) Has been cancelled
Real E2E Tests / JavaScript E2E (docker bridge) (push) Has been cancelled
Real E2E Tests / Python E2E (docker bridge) (push) Has been cancelled
Real E2E Tests / Java E2E (docker bridge) (push) Has been cancelled
Real E2E Tests / C# E2E (docker bridge) (push) Has been cancelled
Real E2E Tests / Go E2E (docker bridge) (push) Has been cancelled
Real E2E Tests / Real E2E CI (push) Has been cancelled
37 lines
719 B
Makefile
37 lines
719 B
Makefile
.PHONY: sync sync-dev test test-k8s test-sandbox test-manager test-code test-pool test-credential-vault lint fmt
|
|
|
|
sync:
|
|
uv sync
|
|
|
|
sync-dev:
|
|
uv sync --group dev
|
|
|
|
test:
|
|
uv run pytest
|
|
|
|
test-kubernetes-mini:
|
|
uv run pytest \
|
|
tests/test_sandbox_e2e_sync.py \
|
|
tests/test_sandbox_manager_e2e_sync.py
|
|
|
|
test-sandbox:
|
|
uv run pytest tests/test_sandbox_e2e.py
|
|
|
|
test-manager:
|
|
uv run pytest tests/test_sandbox_manager_e2e.py
|
|
|
|
test-code:
|
|
uv run pytest tests/test_code_interpreter_e2e.py
|
|
|
|
test-pool:
|
|
uv run pytest tests/test_sandbox_pool_e2e_sync.py tests/test_sandbox_pool_e2e_async.py
|
|
|
|
test-credential-vault:
|
|
uv run pytest tests/test_credential_vault_e2e.py
|
|
|
|
lint:
|
|
uv run ruff check tests
|
|
|
|
fmt:
|
|
uv run ruff format tests
|