Skip to content

Commit

Permalink
[CI] Fix test skipping pytest attribute (#14064)
Browse files Browse the repository at this point in the history
The test previously had the incorrect pytest attribute skip_if, this replaces with the correct one
  • Loading branch information
neildhickey authored Feb 22, 2023
1 parent 19d970c commit a06c36c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/python/integration/test_auto_tensorize.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ def test_dp4a_conv2d():


@tvm.testing.requires_cascadelake
@pytest.mark.skip_if(tvm.testing.IS_IN_CI, reason="Slow on CI")
@pytest.mark.skipif(tvm.testing.IS_IN_CI, reason="Slow on CI")
def test_vnni_bert_int8():
relay_mod, params, input_info = load_quantized_bert_base()
_test_bert_int8(
Expand Down

0 comments on commit a06c36c

Please sign in to comment.