Framework Mode - Test management tools (Jira, TestRail)
Folder Structure for Test Management Integration
test-management-integration/ ├── docs/ │ └── test-plans.md # Test plans and strategy documents ├── scripts/ │ ├── jira/ │ │ └── jira_api_client.py # Scripts to interact with Jira API │ ├── testrail/ │ │ └── testrail_api_client.py # Scripts to interact with TestRail API │ └── utils.py # Helper functions for API calls ├── tests/ │ └── test_management_tests.py # Tests verifying integration correctness ├── config/ │ └── config.yaml # Configuration for API keys, URLs, projects └── README.md # Overview and setup instructions