Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 589 Bytes

File metadata and controls

23 lines (18 loc) · 589 Bytes

Testing Guidelines

  • Unit tests required for all new features
  • Integration tests for API endpoints
  • End-to-end tests for complete workflows
  • Use pytest fixtures for common test setups
  • Mock external services appropriately

Pull Request Process

  1. Create feature branch
  2. Write tests
  3. Implement features
  4. Run test suite
  5. Submit PR with description
  6. Address review comments

Documentation

  • Update relevant documentation with code changes
  • Include docstrings for public interfaces
  • Maintain example usage in docs
  • Update API documentation when endpoints change