Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tests: Improved logging in E2E. #159

Merged
merged 1 commit into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/end_to_end/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def main():
f"--nn_archive_path={nn_archive_path}",
f"--platform={rvc_platform}",
"-v",
"--tb=no",
"--tb=short",
"-r a",
"--log-cli-level=DEBUG",
"--color=yes",
Expand All @@ -81,7 +81,7 @@ def main():
f"--model={model}",
f"--platform={rvc_platform}",
"-v",
"--tb=no",
"--tb=short",
"-r a",
"--log-cli-level=DEBUG",
"--color=yes",
Expand Down
2 changes: 1 addition & 1 deletion tests/end_to_end/test_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def test_pipelines(IP: str, ip_platform: str, nn_archive_path, model):
elif e.returncode == 6:
pytest.skip(f"Can't connect to the device with IP/mxid: {IP}")
elif e.returncode == 7:
pytest.skip(f"Couldn't find model {model} in the ZOO")
pytest.skip(f"Couldn't find model {model} for {ip_platform} in the ZOO")
elif e.returncode == 8:
pytest.skip(
f"The model {model} is not supported in this test. (small input size, grayscale image, etc.)"
Expand Down
Loading