Skip to content

Commit

Permalink
Skip tests for unsupported models: add check for D-Fine
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene123tw committed Jan 16, 2025
1 parent 8a6321e commit df670d8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/integration/api/test_xai.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ def test_forward_explain(
# TODO(Eugene): maskdino not support yet.
pytest.skip(f"There's issue with inst-seg: {model_name}. Skip for now.")

if "dfine" in model_name:
# TODO(Eugene): dfine not support yet.
pytest.skip(f"There's issue with dfine: {model_name}. Skip for now.")

if "dino" in model_name:
pytest.skip("DINO is not supported.")

Expand Down

0 comments on commit df670d8

Please sign in to comment.