From 41a7e7247bc671150d9db97ae425d7d35f7dfcdb Mon Sep 17 00:00:00 2001 From: Leonard Lausen Date: Mon, 27 Jul 2020 10:36:55 -0700 Subject: [PATCH] Fix naming in runtime_functions.sh --- ci/docker/runtime_functions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/docker/runtime_functions.sh b/ci/docker/runtime_functions.sh index 8752856177ea..e175d33e11f8 100755 --- a/ci/docker/runtime_functions.sh +++ b/ci/docker/runtime_functions.sh @@ -746,12 +746,12 @@ sanity_license() { tools/license_header.py check } -sanity_python() { +sanity_cpp() { set -ex 3rdparty/dmlc-core/scripts/lint.py mxnet cpp include src plugin tests --exclude_path src/operator/contrib/ctc_include include/mkldnn } -sanity_cpp() { +sanity_python() { set -ex python3 -m pylint --rcfile=ci/other/pylintrc --ignore-patterns=".*\.so$$,.*\.dll$$,.*\.dylib$$" python/mxnet OMP_NUM_THREADS=$(expr $(nproc) / 4) pytest -n 4 tests/tutorials/test_sanity_tutorials.py