We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b572a4 commit 7ca4fb1Copy full SHA for 7ca4fb1
tests/integration/api_container_test.py
@@ -1267,12 +1267,9 @@ def test_attach_no_stream(self):
1267
@pytest.mark.timeout(5)
1268
@pytest.mark.skipif(os.environ.get('DOCKER_HOST', '').startswith('ssh://'),
1269
reason='No cancellable streams over SSH')
1270
- @pytest.mark.xfail(condition=os.environ.get('DOCKER_TLS_VERIFY') or
1271
- os.environ.get('DOCKER_CERT_PATH'),
1272
- reason='Flaky test on TLS')
1273
def test_attach_stream_and_cancel(self):
1274
container = self.client.create_container(
1275
- BUSYBOX, 'sh -c "echo hello && sleep 60"',
+ BUSYBOX, 'sh -c "sleep 2 && echo hello && sleep 60"',
1276
tty=True
1277
)
1278
self.tmp_containers.append(container)
0 commit comments