From 6e3a54d6abfe6e3149aea430644d782e5f350eed Mon Sep 17 00:00:00 2001 From: Manuel Barkhau Date: Mon, 25 May 2020 09:44:34 +0000 Subject: [PATCH] make test does not do test_compat --- makefile.bootstrapit.make | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/makefile.bootstrapit.make b/makefile.bootstrapit.make index ddcc5b4..f34442d 100644 --- a/makefile.bootstrapit.make +++ b/makefile.bootstrapit.make @@ -379,12 +379,12 @@ test: # Next we install the package and run the test suite against it. - IFS=' ' read -r -a env_py_paths <<< "$(CONDA_ENV_BIN_PYTHON_PATHS)"; \ - for i in $${!env_py_paths[@]}; do \ - env_py=$${env_py_paths[i]}; \ - $${env_py} -m pip install --upgrade .; \ - PYTHONPATH="" ENV=$${ENV-dev} $${env_py} -m pytest test/; \ - done; + # IFS=' ' read -r -a env_py_paths <<< "$(CONDA_ENV_BIN_PYTHON_PATHS)"; \ + # for i in $${!env_py_paths[@]}; do \ + # env_py=$${env_py_paths[i]}; \ + # $${env_py} -m pip install --upgrade .; \ + # PYTHONPATH="" ENV=$${ENV-dev} $${env_py} -m pytest test/; \ + # done; @rm -rf ".pytest_cache"; @rm -rf "src/__pycache__";