From 3c72f09d63dc6346158104dc24dca10bfa2864d9 Mon Sep 17 00:00:00 2001 From: del-zhenwu Date: Mon, 8 Mar 2021 16:10:27 +0800 Subject: [PATCH] Disable -n 4 during run tests Signed-off-by: del-zhenwu --- build/docker/test/docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/docker/test/docker-compose.yml b/build/docker/test/docker-compose.yml index bfe8aae73..3c9e79446 100644 --- a/build/docker/test/docker-compose.yml +++ b/build/docker/test/docker-compose.yml @@ -27,7 +27,7 @@ services: - ../../..:/milvus-distributed:delegated working_dir: "/milvus-distributed/tests/python_test" command: > - /bin/bash -c "sleep 10s && pytest --tags=0331 --ip proxynode -n 4" + /bin/bash -c "sleep 10s && pytest --tags=0331 --ip proxynode" networks: - milvus @@ -42,7 +42,7 @@ services: - ../../..:/milvus-distributed:delegated working_dir: "/milvus-distributed/tests/python_test" command: > - /bin/bash -c "sleep 10s && pytest --tags=0331 --ip standalone -n 4" + /bin/bash -c "sleep 10s && pytest --tags=0331 --ip standalone" networks: - milvus -- GitLab