Skip to content
Merged
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
6 changes: 3 additions & 3 deletions tests/mock_vws/test_docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,11 @@ def test_build_and_run(
)
# If this assertion fails, it may be useful to look at the other
# properties of ``exc``.
if not any(
is_windows_container_error = any(
windows_message_substring in exc.msg
for windows_message_substring in windows_message_substrings
):
raise AssertionError(full_log) from exc # pragma: no cover
)
assert is_windows_container_error, full_log
pytest.skip(
reason="We do not currently support using Windows containers."
)
Expand Down
Loading