Browse code

docker-py: skip flaky tests

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Sebastiaan van Stijn authored on 2019/07/13 20:59:18
Showing 1 changed files
... ...
@@ -8,6 +8,10 @@ source hack/make/.integration-test-helpers
8 8
 # unable to prepare context: unable to 'git clone' to temporary context directory: error fetching: error: no such remote ref ead0bb9e08c13dd3d1712759491eee06bf5a5602
9 9
 #: exit status 128
10 10
 : ${DOCKER_PY_COMMIT:=4.0.2}
11
+
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"}
11 15
 (
12 16
 	bundle .integration-daemon-start
13 17
 
... ...
@@ -45,7 +49,7 @@ source hack/make/.integration-test-helpers
45 45
 	echo INFO: Starting docker-py tests...
46 46
 	(
47 47
 		[ -n "${TESTDEBUG}" ] && set -x
48
-		exec docker run -t --rm ${run_opts} ${docker_py_image} py.test tests/integration
48
+		exec docker run -t --rm ${run_opts} ${docker_py_image} pytest ${PY_TEST_OPTIONS} tests/integration
49 49
 	)
50 50
 	bundle .integration-daemon-stop
51 51
 ) 2>&1 | tee -a "$DEST/test.log"