Skip to content

Commit

Permalink
test_service_logs: stop testing experimental versions
Browse files Browse the repository at this point in the history
Service logs are no longer experimental, so updating the tests
to only test against "stable"  implementations, and no longer
test the experimental ones.

Signed-off-by: Sebastiaan van Stijn <[email protected]>
  • Loading branch information
thaJeztah committed Nov 18, 2024
1 parent fba6ffe commit 8ee2851
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/integration/api_service_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import docker

from ..helpers import force_leave_swarm, requires_api_version, requires_experimental
from ..helpers import force_leave_swarm, requires_api_version
from .base import TEST_IMG, BaseAPIIntegrationTest


Expand Down Expand Up @@ -140,8 +140,7 @@ def test_create_service_simple(self):
assert len(services) == 1
assert services[0]['ID'] == svc_id['ID']

@requires_api_version('1.25')
@requires_experimental(until='1.29')
@requires_api_version('1.29')
def test_service_logs(self):
name, svc_id = self.create_simple_service()
assert self.get_service_container(name, include_stopped=True)
Expand Down

0 comments on commit 8ee2851

Please sign in to comment.