Add a script for running MongoDB core tests locally#285
Merged
Conversation
for more information, see https://pre-commit.ci
Member
Author
|
I used Claude Code to set this up. This works wonderfully on my laptop. Please review; I'd like to extend to a local way to run the tests for all cores. @Borda |
This was referenced Jul 13, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
This PR addresses the gap between local development (using
pymongo_inmemory) and CI testing (using real MongoDB via Docker) by providing developers with easy-to-use tools to run MongoDB tests locally against a real MongoDB instance.When merged, this will close issue #280.
What's New
1. Test Script (
scripts/test-mongo-local.sh)A comprehensive bash script that:
Options:
--mode also-local: Include memory, pickle, and maxage tests alongside MongoDB tests--keep-running: Keep MongoDB container running after tests (useful for debugging)--verbose: Enable verbose pytest output--coverage-html: Generate HTML coverage report2. Docker Compose (
scripts/docker-compose.mongodb.yml)Alternative approach for developers who prefer docker-compose:
3. Makefile Integration
New make targets for convenience:
make test-mongo-local: Run MongoDB tests with Dockermake test-mongo-also-local: Run MongoDB + memory, pickle, maxage testsmake test-mongo-inmemory: Run with in-memory MongoDB (existing)make mongo-start/stop/logs: Container management commands4. Documentation Updates
backlog/drafts/Usage Examples
Benefits
--keep-runningoption helps debug test failuresTesting
Future Enhancements
This pattern can be extended to other backends (Redis, SQL) for consistent local testing across all cachier backends.