Conversation
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.
This pull request migrates the project from Poetry to uv for Python package management and builds, updates CI workflows to use uv, and removes legacy configuration files and tools. It also refactors test setup to use a custom Docker-based RabbitMQ container management, improving reliability and flexibility for local and CI testing. The most important changes are grouped below:
Build system migration and configuration cleanup:
pyproject.tomlto use uv configuration and removingpoetry.toml,pylama.ini,.coveragerc, and legacy Poetry-specific settings. [1] [2] [3] [4] [5]Makefilecommands to use uv for build, publish, test, and development instead of Poetry.CI workflow modernization:
Testing and Docker container management improvements:
tests/conftest.pyto use a custom Docker client for RabbitMQ container lifecycle management, including robust cleanup withatexitand readiness probing. Supports both local and CI environments viaAMQP_URL. [1] [2]Linting and coverage configuration updates:
pyproject.toml, removing legacy pylama and coverage files. [1] [2] [3]General cleanup:
gray.conf,poetry.toml,pylama.ini,.coveragerc) and settings. [1] [2] [3] [4]This migration streamlines development, testing, and CI/CD processes, and ensures compatibility with modern Python tooling.