Skip to content

Commit

Permalink
skipping fancy prmpting test module
Browse files Browse the repository at this point in the history
  • Loading branch information
Jgmedina95 committed Jun 25, 2024
1 parent 7f92e73 commit e807565
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion tests/test_utils/test_query_filter.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
# test_query_filter.py
import pytest

from mdagent.agent.query_filter import Example, FilteredQuery, Parameters, query_filter
try:
from mdagent.agent.query_filter import (
Example,
FilteredQuery,
Parameters,
query_filter,
)
except Exception:
pytest.skip(allow_module_level=True)


@pytest.mark.skip(reason="We skip because query filter was moved to WIP branch.")
Expand Down

0 comments on commit e807565

Please sign in to comment.