taraqueue 0.6.1__tar.gz → 0.6.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {taraqueue-0.6.1 → taraqueue-0.6.2}/CHANGES.rst +7 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/PKG-INFO +1 -1
- {taraqueue-0.6.1 → taraqueue-0.6.2}/taraqueue/testing/compose.py +6 -2
- {taraqueue-0.6.1 → taraqueue-0.6.2}/.editorconfig +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/.gitattributes +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/.github/CODEOWNERS +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/.github/actions/setup-uv-env/action.yml +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/.github/renovate.json +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/.github/workflows/publish.yml +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/.github/workflows/renovate.yaml +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/.github/workflows/test.yml +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/.gitignore +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/.vscode/extensions.json +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/.vscode/launch.json +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/.vscode/settings.json +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/CONTRIBUTING.rst +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/LICENSE.rst +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/Makefile +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/README.rst +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/STYLE_GUIDE.rst +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/compose.yml +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/docs/changes.rst +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/docs/conf.py +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/docs/contributing.rst +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/docs/index.rst +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/docs/license.rst +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/docs/modules.rst +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/docs/style_guide.rst +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/docs/taraqueue.rst +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/docs/taraqueue.testing.rst +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/pyproject.toml +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/taraqueue/__init__.py +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/taraqueue/memory.py +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/taraqueue/redis.py +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/taraqueue/registry.py +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/taraqueue/sqs.py +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/taraqueue/testing/__init__.py +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/taraqueue/testing/queue.py +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/taraqueue/testing/services.py +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/tests/test_compose.py +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/tests/test_queue.py +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/tests/test_redis.py +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/tests/test_registry.py +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/tests/test_sqs.py +0 -0
- {taraqueue-0.6.1 → taraqueue-0.6.2}/uv.lock +0 -0
|
@@ -66,6 +66,7 @@ class ComposeServer(ProcessServer):
|
|
|
66
66
|
|
|
67
67
|
def prepare_func(self, controldir):
|
|
68
68
|
"""Prepare the function to run the compose service."""
|
|
69
|
+
full_name = self.full_name(controldir.basename)
|
|
69
70
|
compose = xdocker.compose().with_project_name(self.project)
|
|
70
71
|
if env_file := self.env_file:
|
|
71
72
|
compose = compose.with_env_file(env_file)
|
|
@@ -74,8 +75,11 @@ class ComposeServer(ProcessServer):
|
|
|
74
75
|
|
|
75
76
|
command = (
|
|
76
77
|
compose
|
|
77
|
-
.
|
|
78
|
-
.
|
|
78
|
+
.run(controldir.basename)
|
|
79
|
+
.with_name(full_name)
|
|
80
|
+
.with_build()
|
|
81
|
+
.with_remove()
|
|
82
|
+
.with_optionals("--use-aliases")
|
|
79
83
|
)
|
|
80
84
|
|
|
81
85
|
return ProcessData(self.pattern, command, timeout=self.timeout)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|