feat: Add comprehensive Python testing infrastructure with Poetry #14
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add Python Testing Infrastructure
Summary
This PR sets up a comprehensive testing infrastructure for the JetMoE project using Poetry as the package manager and pytest as the testing framework. The setup provides a ready-to-use testing environment where developers can immediately start writing tests.
Changes Made
Package Management
pyproject.toml
with complete Poetry configurationsetup.py
to PoetryTesting Dependencies
Added as development dependencies:
pytest
- Main testing frameworkpytest-cov
- Coverage reporting with HTML and XML outputpytest-mock
- Mocking utilities for unit testsTesting Configuration
Configured in
pyproject.toml
:test_*.py
and*_test.py
unit
,integration
,slow
jetmoe
packageProject Structure
Created testing directory structure:
Fixtures (conftest.py)
Comprehensive fixtures for testing:
temp_dir
- Temporary directory managementmock_config
- Mock JetMoE configurationmock_model
- Mock model objectsample_tensor
- Sample PyTorch tensorssample_input_ids
- Sample input IDssample_attention_mask
- Sample attention masksreset_torch_seed
- Reproducible random seedsmock_transformers_model
- Mock transformers modelcleanup_cache
- Cache directory cleanupdisable_gpu
- Force CPU usage for testsDevelopment Experience
poetry run test
andpoetry run tests
.gitignore
with comprehensive testing and development entriesUsage Instructions
Initial Setup
Running Tests
Writing Tests
tests/unit/
tests/integration/
conftest.py
for common test needs@pytest.mark.unit
,@pytest.mark.integration
,@pytest.mark.slow
Notes
Next Steps
modeling_jetmoe.py
,configuration_jetmoe.py
, etc.)pytest-asyncio
,pytest-benchmark
)