feat: Add comprehensive Python testing infrastructure with Poetry #109
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 complete testing infrastructure for the Discord bot 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 project configurationrequirements.txt
Testing Framework
Configuration
pyproject.toml
with:Directory Structure
Test Fixtures
Created comprehensive Discord.py fixtures in
conftest.py
:mock_bot
- Mock Discord bot instancemock_ctx
- Mock command contextmock_member
- Mock Discord membermock_role
- Mock Discord rolemock_message
- Mock Discord messagemock_embed
- Mock Discord embedmock_database
- Mock database connectionmock_config
- Mock configurationtemp_dir
- Temporary directory for testsAdditional Updates
.gitignore
to include.claude/*
Running Tests
To run tests, use either of these commands:
Notes
htmlcov/
) and XML (coverage.xml
) formats