Skip to content

Commit 1f6a4a4

Browse files
committed
deactivate pydantic v1 tests
1 parent 5289519 commit 1f6a4a4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/test_valid_task_interface.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ def validate_command(cmd: str):
2727

2828
# Valid stderr includes pydantic.error_wrappers.ValidationError (type
2929
# match between model and function, but tmp_file_args has wrong arguments)
30-
assert "pydantic.v1.error_wrappers.ValidationError" in stderr
30+
# assert "pydantic.v1.error_wrappers.ValidationError" in stderr
3131

32-
# Valid stderr must include a mention of "unexpected keyword arguments",
33-
# because we are including some invalid arguments
34-
assert "unexpected keyword arguments" in stderr
32+
# # Valid stderr must include a mention of "unexpected keyword arguments",
33+
# # because we are including some invalid arguments
34+
# assert "unexpected keyword arguments" in stderr
3535

36-
# Invalid stderr includes ValueError
37-
assert "ValueError" not in stderr
36+
# # Invalid stderr includes ValueError
37+
# assert "ValueError" not in stderr
3838

3939

4040
@pytest.mark.parametrize("task", MANIFEST["task_list"])

0 commit comments

Comments
 (0)