make test does not do test_compat

This commit is contained in:
Manuel Barkhau 2020-05-25 09:44:34 +00:00
parent 914529fa8b
commit 6e3a54d6ab

View file

@ -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__";