mirror of
https://github.com/logos-messaging/logos-messaging-interop-tests.git
synced 2026-01-05 15:33:06 +00:00
Revert changes done in the branch
This commit is contained in:
parent
d41be384cf
commit
34901ad692
1
.github/workflows/nim_waku_daily.yml
vendored
1
.github/workflows/nim_waku_daily.yml
vendored
@ -8,7 +8,6 @@ on:
|
||||
schedule:
|
||||
- cron: '0 4 * * *'
|
||||
workflow_dispatch:
|
||||
workflow_call:
|
||||
|
||||
jobs:
|
||||
test-common:
|
||||
|
||||
8
.github/workflows/test_common.yml
vendored
8
.github/workflows/test_common.yml
vendored
@ -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()
|
||||
|
||||
@ -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
|
||||
)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user