Skip to content

Commit

Permalink
Fix xfail marker
Browse files Browse the repository at this point in the history
  • Loading branch information
jlowin committed Jun 17, 2024
1 parent 134ec38 commit 07013ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ai_tests/test_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def test_task_pydantic_result(self):
assert isinstance(result, Name)
assert result == Name(first="John", last="Doe")

@pytest.xfail(reason="Need to revisit dataframe handling")
@pytest.mark.xfail(reason="Need to revisit dataframe handling")
def test_task_dataframe_result(self):
task = Task(
'return a dataframe with column "x" that has values 1 and 2 and column "y" that has values 3 and 4',
Expand Down

0 comments on commit 07013ac

Please sign in to comment.