diff --git a/build.sh b/build.sh index f094ba1e22e11435ee899a37e14dee56d6cd8b36..ccb05146b8cefcdcfb822cef42fd6fe6b06c6c59 100755 --- a/build.sh +++ b/build.sh @@ -14,6 +14,7 @@ function pip_compile() { pip-compile -r requirements/tests.in pip-compile -r requirements/dev.in . scripts/script_get_python_requirements_from_txt.sh + pip check } function pip_install() { @@ -21,19 +22,22 @@ function pip_install() { pip install -r requirements/docs.in --log logfile2.txt pip install -r requirements/tests.in --log logfile3.txt pip install -r requirements/dev.in --log logfile4.txt + pip check } function pip_install_via_setup_py() { pip install -e . --compile --force-reinstall --progress-bar pretty --log logfile5.txt # pip install -e . --compile --progress-bar pretty --log logfile5.txt + pip check } function build_wheel() { - python -m build --wheel + #python -m build --wheel + pip check } function main() { - #setup_venv + # setup_venv pip_compile pip_install pip_install_via_setup_py