Browse code

docker-py: deselect broken experimental tests

These tests are fixed upstream, but those fixes are not yet in a
released version.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
(cherry picked from commit f8cde0b32d86fa2df71ec65adc3d45f862b3ea33)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Sebastiaan van Stijn authored on 2019/08/10 01:51:29
Showing 1 changed files
... ...
@@ -10,8 +10,14 @@ source hack/make/.integration-test-helpers
10 10
 : ${DOCKER_PY_COMMIT:=4.0.2}
11 11
 
12 12
 # custom options to pass py.test
13
-# TODO remove these skip once we update to a docker-py version that has https://github.com/docker/docker-py/pull/2369 and https://github.com/docker/docker-py/pull/2380
14
-: ${PY_TEST_OPTIONS:="--deselect=tests/integration/api_swarm_test.py::SwarmTest::test_init_swarm_data_path_addr --deselect=tests/integration/api_exec_test.py::ExecTest::test_detach_with_arg --deselect=tests/integration/api_exec_test.py::ExecDemuxTest::test_exec_command_tty_stream_no_demux"}
13
+# TODO remove these skip once we update to a docker-py version that has https://github.com/docker/docker-py/pull/2369, https://github.com/docker/docker-py/pull/2380, https://github.com/docker/docker-py/pull/2382
14
+: ${PY_TEST_OPTIONS:="\
15
+--deselect=tests/integration/api_swarm_test.py::SwarmTest::test_init_swarm_data_path_addr \
16
+--deselect=tests/integration/api_exec_test.py::ExecTest::test_detach_with_arg \
17
+--deselect=tests/integration/api_exec_test.py::ExecDemuxTest::test_exec_command_tty_stream_no_demux \
18
+--deselect=tests/integration/api_build_test.py::BuildTest::test_build_invalid_platform \
19
+--deselect=tests/integration/api_image_test.py::PullImageTest::test_build_invalid_platform \
20
+"}
15 21
 (
16 22
 	bundle .integration-daemon-start
17 23