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 Oct 2, 2019
1 parent 8077d80 commit e4d6bd1
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 @@ -8,7 +8,7 @@
import six

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

Expand Down Expand Up @@ -130,8 +130,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 e4d6bd1

Please sign in to comment.