Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Skip lm_eval tests if no config file is present #1149

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion tests/e2e/vLLM/test_lmeval.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,12 @@ class TestLMEval:
""" # noqa: E501

def set_up(self):
eval_config = yaml.safe_load(Path(TEST_DATA_FILE).read_text(encoding="utf-8"))
if TEST_DATA_FILE is not None:
eval_config = yaml.safe_load(
Path(TEST_DATA_FILE).read_text(encoding="utf-8")
)
else:
pytest.skip("Skipping test; no eval config present")

if os.environ.get("CADENCE", "commit") != eval_config.get("cadence"):
pytest.skip("Skipping test; cadence mismatch")
Expand Down