From a4fcaf69f583f208dcf63879fc2f51e2d03a52c1 Mon Sep 17 00:00:00 2001 From: Manuel Barkhau Date: Sun, 9 Dec 2018 16:00:22 +0100 Subject: [PATCH] disable default bootstrapit compat test --- makefile | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/makefile b/makefile index 7434a77..0244321 100644 --- a/makefile +++ b/makefile @@ -338,17 +338,6 @@ test: $(COMPAT_TEST_FILES) $(shell cd src/ && ls -1 */__init__.py | awk '{ print "--cov "substr($$1,0,index($$1,"/")-1) }') \ test/ src/; - # Next we install the package and run the test suite against it. - mkdir -p build/test_wheel; - $(DEV_ENV_PY) setup.py bdist_wheel --dist-dir build/test_wheel; - - IFS=' ' read -r -a env_paths <<< "$(CONDA_ENV_PATHS)"; \ - for i in $${!env_paths[@]}; do \ - env_py=$${env_paths[i]}/bin/python; \ - $${env_py} -m pip install --upgrade build/test_wheel/*.whl; \ - ENV=$${ENV-dev} $${env_py} -m pytest --verbose compat_test/; \ - done; - @rm -rf ".pytest_cache"; @rm -rf "src/__pycache__"; @rm -rf "test/__pycache__";