Skip to content

Commit

Permalink
skip openai
Browse files Browse the repository at this point in the history
  • Loading branch information
Hk669 committed Jan 2, 2025
1 parent b3558f8 commit 94749af
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/benchmark/test_reasoning_agent_simplebench.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import sys

import pytest
from conftest import reason, skip_openai

sys.path.append(os.path.join(os.path.dirname(__file__), ".."))
sys.path.append(os.path.join(os.path.dirname(__file__), "../.."))
Expand All @@ -29,6 +30,10 @@ def load_dataset():
return json.load(f)


@pytest.mark.skipif(
skip_openai,
reason=reason,
)
def test_reasoning_agent_simplebench(load_dataset):
eval_data = load_dataset.get("eval_data")
assert eval_data is not None, "No eval_list found in dataset"
Expand Down

0 comments on commit 94749af

Please sign in to comment.