Skip to content

Commit 1cbfd0c

Browse files
committed
adds extra params
1 parent 537bc15 commit 1cbfd0c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

ci/github/integration-testing/webserver.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ test() {
2121
# shellcheck source=/dev/null
2222
source .venv/bin/activate
2323
pushd services/web/server
24-
make test-ci-integration test-path="$1"
24+
make test-ci-integration test-path="$1" pytest-parameters="--setup-show --log-cli-level=INFO"
2525
popd
2626
}
2727

packages/pytest-simcore/src/pytest_simcore/docker_compose.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,9 @@ def _save_docker_logs_to_folder(failed_test_directory: Path):
335335

336336

337337
@pytest.hookimpl()
338-
def pytest_exception_interact(node, call, report):
338+
def pytest_exception_interact(
339+
node, call: pytest.CallInfo[Any], report: pytest.CollectReport
340+
):
339341
# get the node root dir (guaranteed to exist)
340342
root_directory: Path = Path(node.config.rootdir)
341343
failed_test_directory = root_directory / "test_failures" / node.name

0 commit comments

Comments
 (0)