File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
from pytest import mark , raises
3
3
4
4
5
- @mark .xfail (Model .load () == Model .AWS_ANTHROPIC , "Bedrock version of Haiku is subpar" )
6
- @mark .xfail (Model .load () == Model .AWS_META , "It is too hard for Llama 3.2" )
5
+ @mark .xfail (Model .load () == Model .AWS_ANTHROPIC , reason = "Bedrock version of Haiku is subpar" )
6
+ @mark .xfail (Model .load () == Model .AWS_META , reason = "It is too hard for Llama 3.2" )
7
7
def test_addition (al , driver ):
8
8
driver .get ("https://seleniumbase.io/apps/calculator" )
9
9
al .do ("1 + 1 =" )
Original file line number Diff line number Diff line change 2
2
from pytest import mark
3
3
4
4
5
- @mark .xfail (Model .load () == Model .AWS_ANTHROPIC , "Bedrock version of Haiku is subpar" )
6
- @mark .xfail (Model .load () == Model .AWS_META , "https://github.com/langchain-ai/langchain-aws/issues/285" )
5
+ @mark .xfail (Model .load () == Model .AWS_ANTHROPIC , reason = "Bedrock version of Haiku is subpar" )
6
+ @mark .xfail (Model .load () == Model .AWS_META , reason = "https://github.com/langchain-ai/langchain-aws/issues/285" )
7
7
def test_drag_and_drop (al , driver ):
8
8
driver .get ("https://the-internet.herokuapp.com/drag_and_drop" )
9
9
al .check ("square A is positioned to the left of square B" , vision = True )
Original file line number Diff line number Diff line change 2
2
from pytest import mark
3
3
4
4
5
- @mark .xfail (Model .load () == Model .AWS_ANTHROPIC , "Bedrock version of Haiku is subpar" )
5
+ @mark .xfail (Model .load () == Model .AWS_ANTHROPIC , reason = "Bedrock version of Haiku is subpar" )
6
6
def test_select_option (al , driver ):
7
7
driver .get ("https://the-internet.herokuapp.com/dropdown" )
8
8
al .check ("no option is selected" )
You can’t perform that action at this time.
0 commit comments