remove compat fix

This commit is contained in:
Manuel Barkhau 2019-01-07 17:32:53 +01:00
parent df492a20d6
commit 753c649798

View file

@ -31,7 +31,7 @@ test_compat: $(COMPAT_TEST_FILES)
IFS=' ' read -r -a env_paths <<< "$(CONDA_ENV_PATHS)"; \ IFS=' ' read -r -a env_paths <<< "$(CONDA_ENV_PATHS)"; \
for i in $${!env_paths[@]}; do \ for i in $${!env_paths[@]}; do \
env_py=$${env_paths[i]}/bin/python; \ env_py=$${env_paths[i]}/bin/python; \
$${env_py} -m pip install --upgrade pytest build/test_wheel/*.whl; \ $${env_py} -m pip install --upgrade build/test_wheel/*.whl; \
PYTHONPATH="" ENV=$${ENV-dev} \ PYTHONPATH="" ENV=$${ENV-dev} \
$${env_py} -m pytest --verbose compat_test/; \ $${env_py} -m pytest --verbose compat_test/; \
done; done;