diff --git a/cd/python/docker/test_python_image.sh b/cd/python/docker/test_python_image.sh index 092789300802..b10dcfb8ced3 100755 --- a/cd/python/docker/test_python_image.sh +++ b/cd/python/docker/test_python_image.sh @@ -41,6 +41,5 @@ if [[ $mxnet_variant == cpu ]]; then python3 tests/python/mkl/test_mkldnn.py fi -python3 tests/python/train/test_conv.py ${test_conv_params} python3 example/image-classification/train_mnist.py ${mnist_params} diff --git a/ci/docker/runtime_functions.sh b/ci/docker/runtime_functions.sh index 37c9a42233ab..e18e744234e8 100755 --- a/ci/docker/runtime_functions.sh +++ b/ci/docker/runtime_functions.sh @@ -1938,7 +1938,6 @@ cd_integration_test_pypi() { pip3 install --user ./wheel_build/dist/*.whl # execute tests - python3 /work/mxnet/tests/python/train/test_conv.py ${test_conv_params} python3 /work/mxnet/example/image-classification/train_mnist.py ${mnist_params} } diff --git a/docker/docker-python/README.md b/docker/docker-python/README.md index bf1a870b8bec..75fb2b2dbbaa 100644 --- a/docker/docker-python/README.md +++ b/docker/docker-python/README.md @@ -47,7 +47,6 @@ For example: `./build_python_dockerfile.sh 1.3.0 1.3.0.post0 ~/build-docker/incubator-mxnet` ### Tests run -* [test_conv.py](https://github.com/apache/incubator-mxnet/blob/master/tests/python/train/test_conv.py) * [train_mnist.py](https://github.com/apache/incubator-mxnet/blob/master/example/image-classification/train_mnist.py) * [test_mxnet.py](https://github.com/apache/incubator-mxnet/blob/master/docker/docker-python/test_mxnet.py): This script is used to make sure that the docker image builds the expected mxnet version. That is, the version picked by pip is the same as as the version passed as a parameter. diff --git a/docker/docker-python/build_python_dockerfile.sh b/docker/docker-python/build_python_dockerfile.sh index 4763710212fb..cdcc36297059 100755 --- a/docker/docker-python/build_python_dockerfile.sh +++ b/docker/docker-python/build_python_dockerfile.sh @@ -58,7 +58,6 @@ docker_test_image_cpu(){ python_version="${2}" echo "Running tests on mxnet/python:${image_tag}" docker run -v ${test_dir}:/mxnet mxnet/python:${image_tag} bash -c "${python_version} /mxnet/docker/docker-python/test_mxnet.py ${mxnet_version}" - docker run -v ${test_dir}:/mxnet mxnet/python:${image_tag} bash -c "${python_version} /mxnet/tests/python/train/test_conv.py" docker run -v ${test_dir}:/mxnet mxnet/python:${image_tag} bash -c "${python_version} /mxnet/example/image-classification/train_mnist.py" } @@ -67,7 +66,6 @@ docker_test_image_gpu(){ python_version="${2}" echo "Running tests on mxnet/python:${1}" nvidia-docker run -v ${test_dir}:/mxnet mxnet/python:${image_tag} bash -c "${python_version} /mxnet/docker/docker-python/test_mxnet.py ${mxnet_version}" - nvidia-docker run -v ${test_dir}:/mxnet mxnet/python:${image_tag} bash -c "${python_version} /mxnet/tests/python/train/test_conv.py --gpu" nvidia-docker run -v ${test_dir}:/mxnet mxnet/python:${image_tag} bash -c "${python_version} /mxnet/example/image-classification/train_mnist.py --gpus 0,1,2,3" }