Skip to content

Commit eaa7cb3

Browse files
author
Dylan Huang
committed
ignore tests that rely on deprecated commands
1 parent f1fdf66 commit eaa7cb3

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

tests/test_cli.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
class TestCLI:
1212
"""Tests for the CLI functionality."""
1313

14+
@pytest.mark.skip(reason="preview and deploy commands are currently disabled in cli.py")
1415
def test_parse_args(self):
1516
"""Test the argument parser."""
1617
# Test preview command

tests/test_cli_args.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
from eval_protocol.cli import parse_args
77

88

9+
@pytest.mark.skip(reason="preview and deploy commands are currently disabled in cli.py")
910
class TestCliArgParsing:
1011
# --- Tests for 'preview' command ---
1112
def test_preview_with_remote_url_and_samples(self):

tests/test_minimal.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
import pytest
1515

1616

17+
@pytest.mark.skip(reason="agent-eval command is currently disabled in cli.py")
1718
def test_cli_help():
1819
"""Test that the CLI help message works."""
1920
result = subprocess.run(["eval-protocol", "--help"], capture_output=True, text=True, check=False)
@@ -25,6 +26,7 @@ def test_cli_help():
2526
assert "agent-eval" in result.stdout
2627

2728

29+
@pytest.mark.skip(reason="agent-eval command is currently disabled in cli.py")
2830
def test_cli_agent_eval_help():
2931
"""Test that the agent-eval help message works."""
3032
result = subprocess.run(

0 commit comments

Comments
 (0)