From 8fd61dedd8182ab11e3ae4d261409baf29ddfdc5 Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Thu, 18 Jun 2026 16:32:04 -0700 Subject: [PATCH 1/2] Fix test_server_isLatest when using plexpass container tag --- tests/test_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_server.py b/tests/test_server.py index 6d726190c..5eff38111 100644 --- a/tests/test_server.py +++ b/tests/test_server.py @@ -247,7 +247,7 @@ def test_server_isLatest(plex, mocker): from os import environ is_latest = plex.isLatest() - if environ.get("PLEX_CONTAINER_TAG") and environ["PLEX_CONTAINER_TAG"] != "latest": + if environ.get("PLEX_CONTAINER_TAG") and environ["PLEX_CONTAINER_TAG"] not in ("latest", "plexpass", "public"): assert not is_latest else: return pytest.skip( From d655c4535c1fa183885b4915ffe17a0f6dba4f9e Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Thu, 18 Jun 2026 16:35:55 -0700 Subject: [PATCH 2/2] Fix test skip message to include plexpass and public tags --- tests/test_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_server.py b/tests/test_server.py index 5eff38111..2fb7b2fd1 100644 --- a/tests/test_server.py +++ b/tests/test_server.py @@ -251,7 +251,7 @@ def test_server_isLatest(plex, mocker): assert not is_latest else: return pytest.skip( - "Do not forget to run with PLEX_CONTAINER_TAG != latest to ensure that update is available" + "Run with PLEX_CONTAINER_TAG != latest, plexpass, or public to ensure that update is available" )