# EasyTesting **Repository Path**: wangshengliang/easy-testing ## Basic Information - **Project Name**: EasyTesting - **Description**: EasyTesting 是一款基于 Django、DRF、SQLite、Bootstrap 与 HTTPRunner 构建的接口自动化测试平台。平台支持异步执行测试用例与测试套件,提供接口调试、用例管理、自动化测试执行、测试报告查看、测试数据生成、定时任务调度与监控等功能。界面简约美观,操作流畅易上手,致力于为测试团队提供高效、轻量、开源的自动化测试解决方案。 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: https://gitee.com/joyamon/easy-testing - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 26 - **Created**: 2026-01-10 - **Last Updated**: 2026-01-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # EasyTesting A comprehensive testing platform built with Django, Django REST Framework, SQLite, Bootstrap, and HTTPRunner. ## Features - Create and manage test projects - Define test environments with variables - Create API test cases with request details and validation rules - Organize test cases into test suites - Execute tests and view results - RESTful API for integration with other tools ## Installation 1. Clone the repository 2. Create a virtual environment: \`\`\` python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate \`\`\` 3. Install dependencies: \`\`\` pip install -r requirements.txt \`\`\` 4. Run migrations: \`\`\` python manage.py migrate \`\`\` 5. Create a superuser: \`\`\` python manage.py createsuperuser \`\`\` 6. Run the development server: \`\`\` python manage.py runserver \`\`\` ## Usage 1. Access the admin interface at http://localhost:8000/admin/ 2. Log in with your superuser credentials 3. Create projects, environments, test cases, and test suites 4. Execute tests and view results ## API Documentation The platform provides a RESTful API for integration with other tools. The API endpoints are: - `/api/projects/` - Manage projects - `/api/environments/` - Manage environments - `/api/test-cases/` - Manage test cases - `/api/test-suites/` - Manage test suites - `/api/test-runs/` - Manage test runs - `/api/test-results/` - View test results ## License MIT