Skip to content

Commit 4fce68f

Browse files
authored
test(fill): remove test for phil (#1148)
Running `phil` in the framework tests "sometimes" caused `phil`'s pytest-custom-report (emoji) config to leak out into the framework pytest session terminal results and unsettling unfamiliar users.
1 parent db55a77 commit 4fce68f

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

src/cli/tests/test_pytest_fill_command.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
import pytest_plugins.filler.filler
1111

12-
from ..pytest_commands.fill import fill, phil
12+
from ..pytest_commands.fill import fill
1313

1414

1515
@pytest.fixture
@@ -159,11 +159,3 @@ def test_fill_html_and_output_options(
159159
assert result.exit_code == pytest.ExitCode.OK
160160
assert html_path.exists()
161161
assert (output_dir / "state_tests").exists(), "No fixtures in output directory"
162-
163-
164-
def test_phil_default_output_options(runner):
165-
"""A simple sanity test for phil."""
166-
fill_args = ["-k", "test_dup and state_test-DUP16 and LEGACY", "--fork", "Frontier"]
167-
result = runner.invoke(phil, fill_args)
168-
assert result.exit_code == pytest.ExitCode.OK
169-
assert "🦄" in result.output

0 commit comments

Comments
 (0)