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 includes several changes to improve the integration and unit testing processes, as well as updates to the Docker configuration and project dependencies. The most important changes include the addition of integration tests, modifications to the Dockerfile, and updates to the
pyproject.toml
dependencies.Testing Enhancements:
.github/workflows/integration-tests.yml
: Added a new workflow file to set up and run integration tests using GitHub Actions..github/workflows/main.yml
: Updated the main workflow to include the new integration tests.tests/integration/test_intergration.py
: Added a new integration test file to test the health check endpoint using a Docker container.tests/unit/test_status.py
: Added a new unit test for the health check endpoint.Docker Configuration:
docker/Dockerfile
: Added instructions to installcurl
and a health check for the Docker container. [1] [2]Dependency Updates:
pyproject.toml
: Addeddocker
andtestcontainers
dependencies for integration testing.