Revert changes done in the branch

This commit is contained in:
aya 2024-12-12 08:26:49 +02:00
parent d41be384cf
commit 34901ad692
3 changed files with 5 additions and 6 deletions

View File

@ -8,7 +8,6 @@ on:
schedule:
- cron: '0 4 * * *'
workflow_dispatch:
workflow_call:
jobs:
test-common:

View File

@ -40,12 +40,12 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
repository: waku-org/waku-interop-tests
- name: Remove unwanted software
uses: ./.github/actions/prune-vm
- uses: actions/setup-python@v4
with:
python-version: '3.12'
cache: 'pip'
@ -53,7 +53,7 @@ jobs:
- name: Run tests
run: |
pytest -n 40 --dist loadgroup --reruns 2 --alluredir=allure-results
pytest -n 4 --dist loadgroup --reruns 2 --alluredir=allure-results
- name: Get allure history
if: always()

View File

@ -46,7 +46,7 @@ class DockerManager:
port_bindings = {f"{port}/tcp": ("", port) for port in ports}
port_bindings_for_log = " ".join(f"-p {port}:{port}" for port in ports)
cli_args_str_for_log = " ".join(cli_args)
logger.debug(f"docker run -i -t -v temp_volum:/data {port_bindings_for_log} {image_name} {cli_args_str_for_log}")
logger.debug(f"docker run -i -t {port_bindings_for_log} {image_name} {cli_args_str_for_log}")
container = self._client.containers.run(
image_name, command=cli_args, ports=port_bindings, detach=True, remove=remove_container, auto_remove=remove_container, volumes=volumes
)