# Fork the repository on GitHub# Then clone your forkgit clone https://github.com/YOUR-USERNAME/kubiya-workflow-sdk.gitcd kubiya-workflow-sdk# Add upstream remotegit remote add upstream https://github.com/kubiya-sandbox/kubiya-workflow-sdk.git
# Run all testspytest# Run specific test filepytest tests/test_your_feature.py# Run with coveragepytest --cov=kubiya_workflow_sdk --cov-report=html# Run lintingflake8 kubiya_workflow_sdk/black --check kubiya_workflow_sdk/mypy kubiya_workflow_sdk/
# Test full user scenarios@pytest.mark.e2edef test_ai_workflow_generation(): provider = get_provider("adk") result = provider.compose("Deploy a web app") assert "workflow" in result