summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoffrey F <joffrey@docker.com>2019-05-01 20:00:51 -0700
committerJoffrey F <joffrey@docker.com>2019-05-01 20:01:25 -0700
commitf59e317dba636a6922a33c7740912c9bda32be86 (patch)
tree5881ace682358eb6aee00c758bbee670d96d4287 /tests
parent75e0ad017c5b784b1329d02bca2e4eee6b4374d9 (diff)
parenta4c251d230861358c3ee848de6c0852bd96b048f (diff)
downloaddocker-py-update_master_release_notes.tar.gz
Merge branch 'release'update_master_release_notes
Signed-off-by: Joffrey F <joffrey@docker.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/integration/api_container_test.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/integration/api_container_test.py b/tests/integration/api_container_test.py
index 1190d91..26245c1 100644
--- a/tests/integration/api_container_test.py
+++ b/tests/integration/api_container_test.py
@@ -1252,6 +1252,9 @@ class AttachContainerTest(BaseAPIIntegrationTest):
@pytest.mark.timeout(10)
@pytest.mark.skipif(os.environ.get('DOCKER_HOST', '').startswith('ssh://'),
reason='No cancellable streams over SSH')
+ @pytest.mark.xfail(condition=os.environ.get('DOCKER_TLS_VERIFY') or
+ os.environ.get('DOCKER_CERT_PATH'),
+ reason='Flaky test on TLS')
def test_attach_stream_and_cancel(self):
container = self.client.create_container(
BUSYBOX, 'sh -c "sleep 2 && echo hello && sleep 60"',