File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
ci/github/integration-testing
packages/pytest-simcore/src/pytest_simcore Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments