Docker services#1300
Draft
jesper-friis wants to merge 7 commits into
Draft
Conversation
- The dlite-service command should work in an install environment - The tests should run without installation - Released requirements on Python 3.14
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
Added testutils.Service class that can used by the tests start needed services as docker containers.
Also added a dlite-service command that is used to check what test services that are running. This command is also used by ctest as fixtures to ensure that a service is only started once.
If a service is already running when running the tests, it will not be restarted.
It is fairly easy to add new services. Just specify them in the dlite.testutils.Service.conf dict. For simple cases (like redis), just specify the port and docker image. For more demanding services, provide a docker compose file instead of specifying the image.
The following services are currently added:
Enabling the postgresql and mongodb tests revealed some bugs. These were also fixed.
Type of change
Checklist for the reviewer
This checklist should be used as a help for the reviewer.