aboutsummaryrefslogtreecommitdiffstats
path: root/coin_test_instructions.py
diff options
context:
space:
mode:
Diffstat (limited to 'coin_test_instructions.py')
-rw-r--r--coin_test_instructions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/coin_test_instructions.py b/coin_test_instructions.py
index 8df41eb04..e90c9e8af 100644
--- a/coin_test_instructions.py
+++ b/coin_test_instructions.py
@@ -6,7 +6,7 @@ import sys
from build_scripts.options import has_option, log, option_value
from build_scripts.utils import (expand_clang_variables, get_ci_qmake_path,
- get_qtci_virtualEnv, rmtree, run_instruction)
+ get_qtci_virtualEnv, remove_tree, run_instruction)
log.set_verbosity(log.INFO)
@@ -29,7 +29,7 @@ CI_RELEASE_CONF = has_option("packaging")
def call_testrunner(python_ver, buildnro):
_pExe, _env, env_pip, env_python = get_qtci_virtualEnv(python_ver, CI_HOST_OS, CI_HOST_ARCH, CI_TARGET_ARCH)
- rmtree(_env, True)
+ remove_tree(_env, True)
# Pinning the virtualenv before creating one
# Use pip3 if possible while pip seems to install the virtualenv to wrong dir in some OS
python3 = "python3"