Skip to content

Commit

Permalink
tests: add test for prettifying pymol
Browse files Browse the repository at this point in the history
  • Loading branch information
Croydon-Brixton committed Jan 5, 2025
1 parent 6e0c4fc commit 591f3cd
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,3 +168,11 @@ def test_set_and_get_pse_state(session, pymol_server):
def test_python_command(session, pymol_server):
"""Test executing Python commands."""
session.python("x = 5")

@pytest.mark.requires_server
def test_make_pymol_pretty(session, pymol_server):
"""Test making PyMOL look pretty."""
from pymol_remote.style import make_pymol_pretty

session.fetch("6lyz")
make_pymol_pretty(session)

0 comments on commit 591f3cd

Please sign in to comment.